Convert a user mailbox to a shared mailbox
This article explains how to use the Exchange admin center to convert an Office 365 user mailbox to a shared mailbox. You can also convert one mailbox type to another, but you'll have to perform these tasks using Exchange PowerShell.
Convert an Office 365 user mailbox to a shared mailbox
In the EAC, go to Recipients > Mailboxes.
Select the mailbox that you want to convert.
From the More actions pane, click Convert to regular mailbox or Convert to shared mailbox.
In the pane that opens up, select Confirm.
The mailbox is converted from its present type to its other type, and the notification message Mailbox converted successfully is displayed.
Convert User Mailbox to Shared using PowerShell
If the procedure above fails, you will need to convert the mailbox through PowerShell. Before using the following commands, you will need to install the Exchange Online PowerShell Module.
- Run PowerShell as an Administrator.
- Run the following command to install the Exchange Online module: Import-Module ExchangeOnlineManagement
- Wait for the install to complete.
Once this is done, you will be able to user PowerShell on your machine to perform administrative tasks on Exchange Online.
- With PowerShell running on Administrator mode, please run the following command to connect to Exchange Online: Connect-ExchangeOnline
- You will be prompted to enter your admin credentials.
- Once signed in, please use the following command to convert the target mailbox to Shared.
- Set-Mailbox -Identity <MailboxIdentity> -Type <Regular | Room | Equipment | Shared>
- This example converts the shared mailbox named MarketingDept1 to a Shared mailbox:
- Set-Mailbox -Identity MarketingDept1 -Type Shared
You may also convert a Shared mailbox back to user, by using the 'Regular' parameter under -Type.
Use the shared mailbox
Once you've converted your user mailbox to a shared mailbox, there's a couple of things you should do:
Related Articles
Convert a user to Shared Mailbox with Power Shell.
1. Log-in to Office 365 using the script below: $UserCredential = Get-Credential $Session = New-PSSession –ConfigurationName Microsoft.Exchange –ConnectionUri https://outlook.office365.com/powershell-liveid/ -Credential $UserCredential ...
How to open a Shared Mailbox in Outlook for Mac.
Use this method if you are a delegate for another user's mailbox or when you have permissions to several folders in a shared mailbox. You can also use this method when you have full access permissions to a mailbox. To open the shared mailbox: In the ...
How to open a Shared Mailbox on iOS.
To access a shared mailbox on a mobile device, use the following steps. 1. Sign in to your primary account in Outlook for iOS or Android. 2. Tap the Add Account button in the left navigation pane, then tap Add a Shared Mailbox. 3. If you have ...
How to access a Shared Mailbox from OWA
1. From OWA (https://outlook.office.com/owa/), please click on your profile in the upper right part of the window. 2. From the menu that will display, please click on "Open another mailbox..." 3. In the Open another mailbox window that will appear, ...
Create shared mailboxes in Office 365
Create shared mailboxes so a group of people can monitor and send email from a common email addresses, like info@contoso.com. When a person in the group replies to a message sent to the shared mailbox, the email appears to be from the shared mailbox, ...