Convert a user to Shared Mailbox with Power Shell.

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 –Authentication Basic -AllowRedirection

Import-PSSession $Session


2. Once signed-in use the command below to select and convert the desired account to Shared:


Set-Mailbox yourmailboxusername@yourdomain.com -Type shared


3. Verify the mailbox has Shared status.


Get-Mailbox -Identity yourmailboxusername@yourdomain.com | Format-List RecipientTypeDetails


4. Sign-out of Office 365.


Remove-PSSession $Session

    • Related Articles

    • 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 ...
    • How to open a Shared Mailbox on iOS.

      On your iOS device, go to Settings > Mail > Add Account. Select "Other" from the list of types. Select "Add Mail Account" Enter a name for the mail account (e.g. "Enquiries"). Enter the e-mail address of the Shared Mailbox. Enter the password of a ...
    • How to access a Shared Mailbox from OWA.

      1. From OWA (https://outlook.office.com/owa/), please click on your name 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.

      Shared mailboxes in Office 365 make it easy for a group of people to monitor and send email from a common email addresses, like info@contoso.com, support@fourthcoffee.com or contact@contoso.com. When a person in the group replies to a message sent to ...
    • How to open a Shared Mailbox in Outlook for Mac.

      Open Outlook for Mac. Select Outlook from the Toolbar. Select Preferences. Select Accounts. Select Advanced. Select Delegates. Select the + under the Open these additional mailboxes section. Notes: The shared mailbox account is added as an option in ...