Link to home
Start Free TrialLog in
Avatar of Jack Lloyd
Jack LloydFlag for United Kingdom of Great Britain and Northern Ireland

asked on

Confidential Access on Meeting Room Content in Outlook

Hi,

Currently when a user books a meeting room in Outlook and the mark it as confidential people who look at the meeting room mailbox can still see the meeting content because they have access to that meeting room calendar.

Is there a way to keep the content private still so nobody can view it other than the intended?

We've tried classing it as confidential but this isn't working for us as it should?

Cheers

Jack
ASKER CERTIFIED SOLUTION
Avatar of Jamie McKillop
Jamie McKillop
Flag of Canada image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Jack Lloyd

ASKER

Hi Jamie,

Yeah I ended up figuring this out - I did it with powershell to go through the OU with all the mailboxes and it went through and done them all. The code is as follows. We run this as a scheduled job so that means whenever new meeting rooms get created they'll always have this setting applied :-)

If ((Get-PSSnapin | where {$_.Name -match "Exchange.Management"}) -eq $null)
{
      Add-PSSnapin Microsoft.Exchange.Management.PowerShell.E2010
}

$mailboxes = Get-Mailbox -OrganizationalUnit "CONTOSO/Exchange/Resources"

ForEach ($mailbox in $mailboxes){
      Set-CalendarProcessing -Identity $mailbox -RemovePrivateProperty $false

Cheers

Jack