Sep 09 2024 02:57 AM
Hi,
I need the shared mailbox to automatically confirm invitations and schedule in the calendar, wall as a Room object.
The shared folder does not have the Automatically Accepting Meeting Invites attribute.
I tried this procedure:
I created a room-type bypass in the O365 admin, I set up automatic confirmation of meetings in the calendar - it worked for me.
Next, we changed the object type to Shared Mailbox using Powershell.
But auto confirmation stopped working for me.
Please advise.
Sep 09 2024 05:08 PM
Try this:
Set-Mailbox -Identity "SharedMailbox" -Type Room
Set-CalendarProcessing -Identity "SharedMailbox" -AutomateProcessing AutoAccept
Set-Mailbox -Identity "SharedMailbox" -Type Shared
Get-CalendarProcessing -Identity "SharedMailbox"
Sep 20 2024 08:58 AM