Booking subject replaced with organizer name
How to correct the room resource calendar tp stop organizers' names from automatically appearing in the subject field of Evoko Home bookings.
Problem
When creating a booking in Microsoft 365, the user's name might appear on the Evoko Liso twice: once as the organizer, and once as the subject.
Solution
This can be resolved by correcting the room resource calendar processing settings in PowerShell.
- Install and load the Exchange Online PowerShell module if it is not already present:
Set-ExecutionPolicy RemoteSigned
Install-Module -Name ExchangeOnlineManagement
- Connect to Exchange Online. Replace <UPN> with your Exchange Online account in user principal name format (e.g., admin@organization.onmicrosoft.com):
Connect-ExchangeOnline -UserPrincipalName <UPN>
- Correct the calendar processing settings for each Room Resource Account where this issue is being encountered:
Set-CalendarProcessing <Room Resource Account> -AutomateProcessing AutoAccept -AddOrganizerToSubject $False -DeleteComments $False -DeleteSubject $False -RemovePrivateProperty $false