MS-700 · Question #16
You have a Microsoft Office 365 subscription. You create a team named Room1. You need to ensure that Room1 automatically accepts meeting invitations. The solution must prevent meeting invitations…
This question tests your ability to configure a Microsoft Teams room resource mailbox to automatically accept meeting requests while rejecting bookings when the room is already occupied, using PowerShell.
Question
Explanation
This question tests your ability to configure a Microsoft Teams room resource mailbox to automatically accept meeting requests while rejecting bookings when the room is already occupied, using PowerShell.
Approach. The correct PowerShell command uses Set-CalendarProcessing targeting the Room1 mailbox with -AutomateProcessing set to AutoAccept, which enables automatic acceptance of meeting invitations. To enforce conflict prevention, you must also set -AllowConflicts to $false, which ensures that meeting requests are automatically declined when the room is already booked during the requested time slot. The full command looks like: Set-CalendarProcessing -Identity 'Room1' -AutomateProcessing AutoAccept -AllowConflicts $false
Concept tested. Configuring Microsoft 365 resource mailbox calendar processing using Set-CalendarProcessing PowerShell cmdlet - specifically the AutomateProcessing (AutoAccept vs AutoUpdate vs None) and AllowConflicts parameters to manage room booking automation and conflict handling.
Reference. Microsoft Docs: Set-CalendarProcessing | Exchange PowerShell - https://learn.microsoft.com/en-us/powershell/module/exchange/set-calendarprocessing
Topics
Community Discussion
No community discussion yet for this question.