To show detailed information in the resource calendar in Microsoft 365, you need to adjust the calendar permissions and settings using PowerShell. Here are the steps:
- Connect to Exchange Online:
- Open PowerShell as an administrator.
- Install the Exchange Online Management module:
- Install-Module -Name ExchangeOnlineManagement
- Set the execution policy:
- Set-ExecutionPolicy RemoteSigned
- Import the module:
- Import-Module ExchangeOnlineManagement
- Connect to Exchange Online:
- Connect-ExchangeOnline -UserPrincipalName <your_admin_email>
2. Set Calendar Permissions:
- To allow users to see the subject and organizer of the meetings, run the following command:
- Set-MailboxFolderPermission -Identity "Meetingroom:\calendar" -User default -AccessRights LimitedDetails
3. Show Subject and Organizer:
- To display the subject and organizer of the meetings, run:
- Set-CalendarProcessing -Identity "Meetingroom" -AddOrganizerToSubject $true -DeleteComments $false -DeleteSubject $false
These steps will ensure that new meetings or updated existing meetings will show detailed information in the resource calendar12.
If you have multiple room mailboxes, you can apply these settings to all of them at once by looping through them with PowerShell commands.
Was this article helpful?
That’s Great!
Thank you for your feedback
Sorry! We couldn't be helpful
Thank you for your feedback
Feedback sent
We appreciate your effort and will try to fix the article