Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

The following commands have to be executed using ExchangePowerShell with admin rights. Once executed, it might take up to 15 minutes before being effective.

Replace "In order to provide the access to “roomz-manager” to the agenda of a meeting room, please execute the following command per room: (replace roomz-manager" with by the name of your ROOMZ user and “mymy-room” room by the name identifier of your meeting room.)

Code Block
languagepowershell
Add-MailBoxPermission my-room -User roomz-manager -AccessRights FullAccess -InheritanceType All

Or you can execute the following one which will take all the room mailbox: (replace roomz-manager by the name of your ROOMZ user)

Code Block
languagepowershell
Get-Mailbox| where {$_.RecipientTypeDetails -eq "RoomMailbox"} | Add-MailBoxPermission -User roomz-manager -AccessRights FullAccess -InheritanceType All

Meeting Title & Private Flag

...