Home > Exchange > How to Enable AutoAccept on Multiple Exchange 2010 Room or Equipment mailboxes

How to Enable AutoAccept on Multiple Exchange 2010 Room or Equipment mailboxes

Here is a quick tip on using the Exchange Management Shell to enable Auto Accept on all of your Room or Equipment mailboxes with a single command in Exchange Server 2010.

This is useful when you have just created a bunch of new Room or Equipment mailboxes for a new environment and want to save time configuring the meeting processing settings.

For all Room mailboxes:

get-mailbox | where{$_.ResourceType -eq “Equipment”} | Set-CalendarProcessing -AutomateProcessing AutoAccept

For all Room mailboxes on Database01:

get-mailbox -database Database01 | where{$_.ResourceType -eq “Equipment”} | Set-CalendarProcessing -AutomateProcessing AutoAccept

For all Equipment mailboxes:

get-mailbox | where{$_.ResourceType -eq “Room”} | Set-CalendarProcessing -AutomateProcessing AutoAccept

For all Equipment mailboxes on Database01:

get-mailbox -database Database01 | where{$_.ResourceType -eq “Room”} | Set-CalendarProcessing -AutomateProcessing AutoAccept

Read more on the Microsoft TechNet Exchange 2010 documentation pages:

  1. No comments yet.
  1. No trackbacks yet.