How can I hide the meeting subject in the timeline?
If you'd like to hide the meeting title in the timeline, you can use this procedure.
1. Room mailbox parameters
You can use the following Exchange PowerShell cmdlet to review the related parameters of your room mailbox
Get-CalendarProcessing -Identity "kickle01@kickle.com" | fl Add*,Delete*,Remove*
Parameter | Default |
AddOrganizerToSubject | True |
DeleteComments | True |
DeleteSubject | True |
RemovePrivateProperty | True |
AddAdditionalResponse | False |
AdditionalResponse | <null> |
2. Disable the title
If you wish to disable title parameter of your room mailbox, run the cmdlet bellow:
Set-CalendarProcessing -Identity kickle01@kickle.com -DeleteSubject $true