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 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.

      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 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, ...