Question
How do I create a Shared and/or Resource mailbox in Office 365?
Overview
When creating a Shared/Resource mailbox you must first create and place the user object in the appropriate departmental organizational unit in Active Directory, this is how you "pre-stage" the account.
Answer
Creating an Office 365 shared/resource mailbox
Method 1: Create an Office 365 mailbox directly using the uinform tool
- Request a departmental account using this form: Departmental request form - create
- Once you receive the confirmation your TASK was completed, reset the passphrase with the instructions set to provision the account.
- Provisioning will complete overnight to appear in AD.
- Login to https://admin.uinform.ucdavis.edu
- Search for the departmental account, then select on their Sam Account Name to select the account to verify its there
- Once you get the email saying the account was created, convert this mailbox to a shared/resource mailbox using one of the following methods:
- Use PowerShell Office365 Exchange Management Shell - See KB0000322 for more information how to connect.
Set-oMailbox -Identity [UPN] -type Shared
or
Set-oMailbox -Identity [UPN] –type Room
or
Set-oMailbox -Identity [UPN] –type Equipment - Use Office365 ECP to convert a mailbox to a shared mailbox. Note: There is no option to convert to a room or equipment mailbox, that must be done via PowerShell.
- Login to the Office365 ECP - https://outlook.office365.com/ecp/
- Under "recipients" select "mailboxes"
- Search for the mailbox name, and select it in the list
- In the right section of the window, under "Convert to Shared Mailbox", select "Convert"
- Click "Yes" when prompted to confirm that you want to convert the mailbox
- Use PowerShell Office365 Exchange Management Shell - See KB0000322 for more information how to connect.
Note: There is a known issue where the AD attributes of the user object do not update to reflect their type change done above. You can read the previously linked article for more information. Or use the following PowerShell cmdlet to set the attributes correctly:
- Set-ADUser -Identity [UPN] -Replace @{msExchRemoteRecipientType=100;msExchRecipientTypeDetails=34359738368}