show-meeting-subject-in-meeting-room-calendar

Solution
First we need to run the following lines of code to connect to Exchange Online.

$UserCredential = Get-Credential
$ExchangeSession = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri https://outlook.office365.com/powershell-liveid/ -Credential $UserCredential -Authentication Basic -AllowRedirection
Import-PSSession $ExchangeSession

  


Once we are connected we can run these PowerShell command towards the mailbox in question, meetingrom1@o365admin.tips. The first line will set the permissions for the default user to Reviewer, giving all users permission to read all items in the meeting room calendar. The second line will set the calendar processing rules in order to not delete the subject upon accepting the meeting.

Set-MailboxFolderPermission -Identity bjroom1@cndotnetcms.onmicrosoft.com:\Calendar -User default -AccessRights Reviewer
Set-CalendarProcessing -Identity bjroom1@cndotnetcms.onmicrosoft.com -DeleteSubject $False -AddOrganizerToSubject $True

  


That’s all! Now the meeting room calendar will show the meeting subject instead of busy. If you don’t want to add the meeting organizer to the subject you can of course set this to $False instead. Johnny User rescheduled the meeting after the processing rules were altered, causing the calendar to now show the subject for his meeting.

 

ist: https://www.powershellgallery.com/packages/ExchangeOnlineManagement/2.0.3

 use  https://docs.microsoft.com/en-us/powershell/exchange/exchange-online-powershell-v2?view=exchange-ps 


PattiF@cndotnetcms.onmicrosoft.com

mqingqing123@cndotnetcms.onmicrosoft.com

 

"{\"@odata.context\":\"https://graph.microsoft.com/v1.0/$metadata#users('bjroom1%40cndotnetcms.onmicrosoft.com')/calendar/calendarView(start,subject,end)\",\"value\":[{\"@odata.etag\":\"W/\\\"BL4Bu4durEO1ANIoXDCtRQAAIWFULA==\\\"\",\"id\":\"AAMkAGEwZTJiMzZlLTE1NDItNDA0ZS1iNGU2LWRkYjI0ZDE1YjJjZQBGAAAAAACK5GxVHnjfSKLrOTV9vGGMBwAEvgG7h26sQ7UA0ihcMK1FAAAAAAENAAAEvgG7h26sQ7UA0ihcMK1FAAAhYZZYAAA=\",\"subject\":\"\\u674e \\u4e07\\u5b9d \",\"start\":{\"dateTime\":\"2020-02-20T11:30:00.0000000\",\"timeZone\":\"UTC\"},\"end\":{\"dateTime\":\"2020-02-20T13:00:00.0000000\",\"timeZone\":\"UTC\"}}]}"

posted @ 2020-02-20 20:39  启明星工作室  阅读(363)  评论(0编辑  收藏  举报