Versions Compared

Key

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

This documentation is only valid for Exchange On-Premise. Looking for Exchange Online - Office365 ?

...

Option 1: Impersonation (to be executed once), replace "roomz-manager" with the name of your ROOMZ user

Code Block
languagepowershell
New-ManagementScope -Name "RoomzScope" -RecipientRestrictionFilter {RecipientTypeDetails -eq "RoomMailbox"}
New-ManagementRoleAssignment -Role ApplicationImpersonation -User roomz-manager -CustomRecipientWriteScope "RoomzScope"

Option 2: Full Access Rights (to be executed for all meeting rooms), replace "roomz-manager" with the name of your ROOMZ user and "my-room" with the name of your meeting room

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

Outgoing IP address

The outgoing IP address used in order to communicate with the booking systems is the following : 13.80.100.184

If your IT infrastructure requires it, make sure to allow this IP address to communicate with your booking system.

...

The following command allows applying the parameter to all rooms :

Code Block
languagepowershell
Get-Mailbox| where {$_.RecipientTypeDetails -eq "RoomMailbox"} | Set-CalendarProcessing -AddOrganizerToSubject $false -DeleteSubject $false -RemovePrivateProperty $false
Note

Once executed, this command will only be effective for the new meetings. When new meeting rooms are created, this command has to be executed again.
Make sure to activate “Show meetings titles” in the Room option set menu. From default, the titles are deactivated:

...