I have office room which is managed by Zoom and when we create Resources in exchange online and when people send invite using that room resourcs, they are unable to join the Teams meeting due to the resources permission issue.
In order to solve this issue, I follow Microsoft article https://learn.microsoft.com/en-us/microsoftteams/rooms/third-party-join?tabs=MTRW
Here the fix is we need to set DeleteSubject, AddOrganizerToSubject, DeleteComments and RemovePrivateProperty for CalendarProcessing value set to False.
Open Powershell and connect to exchange using connect-exchangeonline command.
Get-CalendarProcessing -Identity <CalendarResourceEmail> | Format-List Identity,DeleteSubject,AddOrganizerToSubject,DeleteComments,RemovePrivateProperty
You will see most of the value will set to true in room resource.
Set-CalendarProcessing -Identity <CalendarResourceEmail> -DeleteComments $false
Set-CalendarProcessing -Identity <CalendarResourceEmail> -DeleteSubject $false
Set-CalendarProcessing -Identity <CalendarResourceEmail> -RemovePrivateProperty $false
Set-CalendarProcessing -Identity <CalendarResourceEmail> -AddOrganizerToSubject $false
Comments
Post a Comment