Manage resource mailboxes

Completed

When creating a resource mailbox, you can also configure settings that determine how the resource mailbox responds to meeting requests. For example, you can:

  • Configure resource mailboxes to automatically process incoming meeting requests for all users.
  • Restrict who can book the meeting room.
  • Configure delegates who must approve all meeting requests.
  • Configure the resource mailbox to accept only certain types of meetings. For example, you can configure a conference room to automatically accept incoming meeting requests but not accept recurring meeting requests.

You can create and manage resource mailboxes in the Exchange admin center (EAC) or with Exchange PowerShell using the New-Mailbox cmdlet with the -Room parameter for a room mailbox or the -Equipment parameter for an equipment mailbox.

For example, to create a new room mailbox with the name ConfRoom1 and the display name “Conference Room 1”, you would run the following command:

New-Mailbox -Name ConfRoom1 -DisplayName "Conference Room 1" -Room

To create a new equipment mailbox with the name “Projector1” and display name “Projector 1”, you would run the following command:

New-Mailbox -Name Projector1 -DisplayName "Projector 1" -Equipment

Manage resource mailboxes

When managing a resource mailbox through the EAC, you can configure the following settings that define how the mailbox accepts meeting requests.

Settings Description
General Specify Name, capacity, hide from address lists, department, company, address book policy, and custom attributes.
Booking delegates Accept booking requests automatically, select delegates, or customize an acceptance policy for this mailbox.
Booking options Allow repeated meetings, only schedule during working hours, maximum booking lead time, maximum meeting duration, and a customized reply to the meeting organizer.
Contact information Add street, Zip/post code, city, and so on, if necessary.
Email address Add further email addresses if necessary.
MailTip Create a MailTip to provide additional information that users can see when they select this address in an email.
Mailbox delegation Configure Send As, Send on Behalf Of, and Full Access permission for this mailbox, as with shared mailboxes.

You can also configure several other settings that control how the resource mailbox responds to meeting requests. These settings can be configured in Exchange PowerShell by using the Set-CalendarProcessing cmdlet. Some of the available options include:

Configuration option Sample command When to use
Allow conflicting meetings. Set-CalendarProcessing –id MeetingRoom1 –AllowConflicts $true If an organization wants to allow room bookings even when there's a conflict in the booking calendar so that conflicts will be manually resolved by a booking delegate.
Allow certain users to request meetings that don't follow the policies involving maximum lead time or maximum meeting limits. Set-CalendarProcessing –id MeetingRoom1 –RequestOutOfPolicy pattif If an organization needs specific users to have permission to book a room, despite any booking policies.
Prevent the meeting room from accepting meeting requests automatically. Set-CalendarProcessing -Identity MeetingRoom1 -AutomateProcessing: None If an organization needs to assign a delegate who will be responsible for room booking.

Messaging administrators should consider the following factors when designing how meeting requests are accepted:

  • Restricting who can schedule a resource mailbox. You might accept the default settings for most resources in the organization but consider restricting who can book heavily used or important resources. For example, if you use a resource room mailbox to manage the schedule for a large conference room, you may want to restrict who can book meetings in the conference room.
  • Restricting resource mailbox scheduling and usage. You may want to set restrictions on the time of day when meetings can be booked with a resource, or restrict the meeting length or meeting recurrence.
  • How to configure the automatic acceptance policy for the resource mailbox. By default, all resource mailboxes are configured to accept all new appointment requests and to block conflicting requests. You can change setting this so that all meeting requests are accepted as tentative, or to allow users to book the meeting resource for the same time.