Forum Discussion

Glenn V's avatar
Glenn V
Brass Contributor
Apr 17, 2018
Solved

How to change resource mailbox calendar settings to show organizer and subject details

We have just moved from Exchange on premise to Exchange Online. I've recreated the resource mailboxes and they are visible and work. However, by default, when any user looks at the calendar they only...
  • VasilMichev's avatar
    Apr 18, 2018

    Easily done via PowerShell:

     

    $calendars = Get-Mailbox -RecipientTypeDetails RoomMailbox | Get-MailboxFolderStatistics | ? {$_.FolderType -eq "Calendar"} | select @{n="Identity"; e={$_.Identity.Replace("\",":\")}}
    
    $calendars | % {Set-MailboxFolderPermission -Identity $_.Identity -User Default -AccessRights LimitedDetails} 

Resources