Versions Compared

Key

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

...

If you want to show the meeting title, the following PowerShell command has to be executed for each room. When the meeting is considered as 'private', the title of the meeting will be replaced by 'Reserved' on the ROOMZ Display. 

(Adapt the parameter "myRoom@myorganization.fr" to the email address of the desired meeting room)

Code Block
languagepowershell
Get-Mailbox -Identity "myRoom@myorganization.fr" | 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.

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

The title of the future upcoming meetings will then be correctly shown on the device:

...

When a meeting is private, the display will show the information as follows :

...