Outlook および RICOH Spaces 内で、プライベートな会議がプライベートとして正しく表示されるようにするには、以下の設定をお勧めします:
会議室カレンダーの設定を変更します。PowerShellで設定変更できます:https://をご覧ください。microsoft.com/en-us/powershell/module/exchange/set-calendarprocessing?view=exchange-ps。
各マイクロソフト会議室の推奨設定は以下の通り:
AddOrganizerToSubject : False
件名にホスト名を追加しない
DeleteSubject : False
タイトルの削除を避ける
RemovePrivateProperty : False
非公開フラグの削除を避ける
DeleteComments : False
ボディの削除を避ける
上記の変更をすべての会議室に適用するコマンド。
Get-Mailbox -RecipientTypeDetails "RoomMailbox" | foreach {Set-CalendarProcessing -Identity $_.PrimarySMTPAddress -RemovePrivateProperty $False -DeleteSubject $False -AddOrganizerToSubject $False -DeleteComments $False}.
詳細を見る: