• Outlook User
  • New Outlook app
  • Outlook.com
  • Outlook Mac
  • Outlook & iCloud
  • Developer
  • Microsoft 365 Admin
    • Common Problems
    • Microsoft 365
    • Outlook BCM
    • Utilities & Addins

Convert an Exchange Mailbox to a Shared Mailbox

Slipstick Systems

› Exchange Server › Convert an Exchange Mailbox to a Shared Mailbox

Last reviewed on December 4, 2018     58 Comments

After a user quit, an administrator wanted to convert the mailbox to a shared mailbox, to free up the license the mailbox was using. Because the user handled important communications, he didn’t want to delete the mailbox right away.

Create a shared mailbox in Exchange or Office 365

While I’d export the mailbox to a pst for backup, delete it and add the user’s address(es) to the mailbox of the person who took over the job, it is possible to convert a mailbox to a shared mailbox.

Shared mailboxes in the Business and Exchange Online Plan 1 and Plan 2 have a quota of 50 GB.

A license is not required for a shared mailbox provided you do not enable In-place Archive. If you are converting a user mailbox with an In-place archive to a shared mailbox, you'll need export the archive to a pst before converting the mailbox.

Both on-prem Exchange and Office 365 Mailboxes can be converted to shared either using PowerShell or using the Exchange Admin Center.

Using the Admin Center

To convert mailboxes using the web interface, open the Office 365 Admin center in your browser. Select Users then select the mailbox you need to convert.

office 365 convert to shared mailbox (new)

It will take a few minutes to convert the mailbox to shared. Once finished, remove the license from the mailbox in the Office 365 Admin center. Select the account again, then click Edit to the right of Product licenses. Slide the license indicator to Off then click Save.
remove a license
 

Using PowerShell

If you are comfortable using Powershell, you can use the Set-Mailbox cmdlet to convert a mailbox to a shared mailbox.

Set-Mailbox info@domain.com -Type shared

If desired, you can change the quota before setting the mailbox to shared.

Set-Mailbox info@domain.com -Type shared -ProhibitSendReceiveQuota 10GB -ProhibitSendQuota 9.5GB -IssueWarningQuota 9GB
Set-Mailbox info@domain.com -Type shared

The Type parameter supports Regular, Room, Equipment, and Shared as values.

Verify the mailbox is now a shared mailbox:

Get-Mailbox -Identity info@domain.com | Format-List RecipientTypeDetails

use PowerShell to convert a mailbox type

To create a list of all users and mailbox types to a csv file, use this cmdlet. Name returns the display name; you can use alias instead (or add alias as another field).

Get-Mailbox | Select-Object name,RecipientTypeDetails| Sort-Object name| export-csv D:\Documents\output.csv

After converting the mailbox, give other users Full Access and Send As permission as needed. You can do this from the Exchange Control Panel or using PowerShell.

To use PowerShell to give a user or group FullAccess rights:

Add-MailboxPermission username -User newuser -AccessRights FullAccess

To use PowerShell to give a user or group SendAs rights:

Add-RecipientPermission username -Trustee newuser -AccessRights SendAs

Assign fullaccess and send as permissions to the shared mailbox

Now you can remove the license from the account in Users and Groups. Two dialogs will warn you that removing the license will delete the mailbox and the contents, however, because you converted the mailbox to a shared mailbox before removing the license, the mailbox won't be deleted. Note: while the mailbox contents are safe, Lync contacts may be lost.

The first dialog:
Are you sure you want to delete the license

The second dialog reads:

Are you sure you want to remove the Exchange license?

The user’s mailbox and all messages in it are deleted. We recommend that you only delete licenses from users who no longer need email.
All email aliases associated with the user account are deleted. If you need someone in your company to receive email at those aliases, assign them to another user.
Their Lync Contacts list may be deleted. To restore their Lync Contacts, assign the user an Exchange license within 30 days. If you want to remove their Exchange license but keep their Lync Contacts, contact Support before you remove the Exchange license.

More Information

More information is available at Convert a Mailbox (TechNet)

Convert an Exchange Mailbox to a Shared Mailbox was last modified: December 4th, 2018 by Diane Poremsky

Related Posts:

  • Create a shared mailbox in Exchange or Office 365
  • Save Sent Items in Shared Mailbox Sent Items folder
  • Send Messages Using Exchange Mailbox Aliases
  • Changing the From Domain in Office 365

About Diane Poremsky

A Microsoft Outlook Most Valuable Professional (MVP) since 1999, Diane is the author of several books, including Outlook 2013 Absolute Beginners Book. She also created video training CDs and online training classes for Microsoft Outlook. You can find her helping people online in Outlook Forums as well as in the Microsoft Answers and TechNet forums.

Subscribe
Notify of
58 Comments
newest
oldest most voted
Inline Feedbacks
View all comments

Shawn
May 22, 2018 4:00 pm

What would cause a User Mailbox that was converted to a Shared Mailbox using EAC to not show up in the Shared Mailboxes section and the User to still exist in the Mailboxes Section. After running the Convert link on the User that we want as a Shared Mailbox

1
0
Reply
Nath
Reply to  Shawn
February 25, 2019 9:01 am

This is a known issue when using Microsoft Partner logins.

0
0
Reply
Alex
February 22, 2018 9:33 pm

What if I want to convert a "user" (=UPN without a license) not a usermailbox to a shared mailbox?

0
0
Reply
Diane Poremsky
Author
Reply to  Alex
February 24, 2018 10:59 pm

This is a contact? I think you will need to remove the contact from the gal then add the address back as a shared mailbox.

This powershell converts a mailbox to a user, but i didn't see one to convert a user to mailbox.
https://gallery.technet.microsoft.com/office/How-to-convert-mailbox-to-c92c9153

0
0
Reply
rino19ny
January 18, 2018 1:32 am

i have Exchange 2013 cu17, i don't see that convert option in the ECP.

0
0
Reply
Diane Poremsky
Author
Reply to  rino19ny
January 18, 2018 7:08 am

I don't have an Exchange 2013 ECP handy to double check, but if they it's similar to the new Office 365 interface, it was moved to the main user admin screen (where you assign licenses and reset password). Select the user, expand the mail section - convert to shared is at the bottom.

You can always use a cmdlet: Set-Mailbox alias -Type shared
https://technet.microsoft.com/en-us/library/bb123981(v=exchg.150).aspx

0
0
Reply
Kevin
September 18, 2017 9:21 am

All, I have several mailboxes the need to be converted to shared mailboxes. First, I want to run a script that will verify the type of mailbox it is. I would like to import a CSV file and have the script tell me what each mailbox type it is. 2nd, I would then create another CSV file and import the contents into a 2nd script that would convert the mailboxes to a shared mailbox.

Help please, Thanks

0
0
Reply
Diane Poremsky
Author
Reply to  Kevin
January 18, 2018 7:42 am

I know you can do the first... and use a csv to convert the listed accounts to shared, but I 'm not sure you can pipe it into set-mailbox (it's not working here, but I'm not a powershell expert, so it could be user error :))

To get a CSV, use this cmdlet:
Get-Mailbox | Select-Object name,RecipientTypeDetails| Sort-Object name| export-csv D:\Documents\output.csv
if you want more fields, see https://technet.microsoft.com/en-us/library/bb123685(v=exchg.160).aspx

using the csv to do something would be something like this:import-Csv D:\Documents\output.csv | ForEach-Object { Set-Mailbox -Identity $_."name" -type shared}

0
0
Reply
Victoria
February 17, 2017 9:58 am

How can I move an Exchange shared calendar to Office 365 as a shared calendar?

0
0
Reply
Diane Poremsky
Author
Reply to  Victoria
February 19, 2017 11:08 pm

You (or someone with the right permission) needs to create the caendar in office 365 then use a list view to select all, copy and paste to the new calendar.

0
0
Reply
Earle Maharaj
January 5, 2017 12:25 pm

We've been converting user mailboxes to shared for at least 6 months now. The users with rights to the shared mailboxes are reporting that the shared mailboxes are no longer receiving new emails. Is there another setting in console that needs to be enabled for converted user to shared mailbox to receive email?

0
0
Reply
A-FS
September 21, 2016 2:50 pm

Can external users be members of shared mailboxes? How would they access the shared mailbox?

0
0
Reply
Diane Poremsky
Author
Reply to  A-FS
September 21, 2016 5:44 pm

If you create a mail contact, they get a password and an internal address (but no mailbox) then assign their user contact full access permission to the mailbox, they can log into Outlook on the web using the internal address and password - address would be https://owa.domain.com/owa/sharedmailbox@domain.com/. It can take some time for the permissions to propagate.

You can't use Outlook on the desktop, on the web interface.

It can take about 15 minutes for permissions to update after adding the contact to the shared mailbox.

0
0
Reply
Michael
Reply to  Diane Poremsky
June 3, 2019 10:21 am

Nice article!
How do you create a mail contact that gets a password?

0
0
Reply
Stephan
May 9, 2016 3:51 am

Thank you for the article. Converting the mailbox is really simple. However, I cannot find the option to remove the license from the AD account. We have a local server, not online. Any ideas?

0
0
Reply
Diane Poremsky
Author
Reply to  Stephan
May 9, 2016 9:43 pm

Is everything on the local server or it is a hybrid configuration?
This removes an E3 from an account
Set-MsolUserLicense -UserPrincipalName alias -RemoveLicenses "company-name:ENTERPRISEPACK"
verify it was removed using
Get-MsolUser -UserPrincipalName alias

More information https://technet.microsoft.com/en-us/library/dn771774.aspx

1
0
Reply

Visit Slipstick Forums.
What's New at Slipstick.com

Latest EMO: Vol. 30 Issue 29

Subscribe to Exchange Messaging Outlook






Support Services

Do you need help setting up Outlook, moving your email to a new computer, migrating or configuring Office 365, or just need some one-on-one assistance?

Our Sponsors

CompanionLink
ReliefJet
  • Popular
  • Latest
  • Week Month All
  • Jetpack plugin with Stats module needs to be enabled.
  • Move Deleted Items to Another Folder Automatically
  • Open Outlook Templates using PowerShell
  • Count and List Folders in Classic Outlook
  • Google Workspace and Outlook with POP Mail
  • Import EML Files into New Outlook
  • Opening PST files in New Outlook
  • New Outlook: Show To, CC, BCC in Replies
  • Insert Word Document into Email using VBA
  • Delete Empty Folders using PowerShell
  • Warn Before Deleting a Contact
Ajax spinner

Recent Bugs List

Microsoft keeps a running list of issues affecting recently released updates at Fixes or workarounds for recent issues in classic Outlook (Windows).

For new Outlook for Windows: Fixes or workarounds for recent issues in new Outlook for Windows .

Outlook for Mac Recent issues: Fixes or workarounds for recent issues in Outlook for Mac

Outlook.com Recent issues: Fixes or workarounds for recent issues on Outlook.com

Office Update History

Update history for supported Office versions is at Update history for Office

Outlook Suggestions and Feedback

Outlook Feedback covers Outlook as an email client, including Outlook Android, iOS, Mac, and Windows clients, as well as the browser extension (PWA) and Outlook on the web.

Outlook (new) Feedback. Use this for feedback and suggestions for Outlook (new).

Use Outlook.com Feedback for suggestions or feedback about Outlook.com accounts.

Other Microsoft 365 applications and services




New Outlook Articles

Move Deleted Items to Another Folder Automatically

Open Outlook Templates using PowerShell

Count and List Folders in Classic Outlook

Google Workspace and Outlook with POP Mail

Import EML Files into New Outlook

Opening PST files in New Outlook

New Outlook: Show To, CC, BCC in Replies

Insert Word Document into Email using VBA

Delete Empty Folders using PowerShell

Warn Before Deleting a Contact

Newest Code Samples

Open Outlook Templates using PowerShell

Count and List Folders in Classic Outlook

Insert Word Document into Email using VBA

Warn Before Deleting a Contact

Use PowerShell to Delete Attachments

Remove RE:, FWD:, and Other Prefixes from Subject Line

Change the Mailing Address Using PowerShell

Categorize @Mentioned Messages

Send an Email When You Open Outlook

Delete Old Calendar Events using VBA

Repair PST

Convert an OST to PST

Repair damaged PST file

Repair large PST File

Remove password from PST

Merge Two Data Files

Sync & Share Outlook Data

  • Share Calendar & Contacts
  • Synchronize two computers
  • Sync Calendar and Contacts Using Outlook.com
  • Sync Outlook & Android Devices
  • Sync Google Calendar with Outlook
  • Access Folders in Other Users Mailboxes

Diane Poremsky [Outlook MVP]

Make a donation

Mail Tools

Sending and Retrieval Tools

Mass Mail Tools

Compose Tools

Duplicate Remover Tools

Mail Tools for Outlook

Online Services

Calendar Tools

Schedule Management

Calendar Printing Tools

Calendar Reminder Tools

Calendar Dates & Data

Time and Billing Tools

Meeting Productivity Tools

Duplicate Remover Tools

Productivity

Productivity Tools

Automatic Message Processing Tools

Special Function Automatic Processing Tools

Housekeeping and Message Management

Task Tools

Project and Business Management Tools

Choosing the Folder to Save a Sent Message In

Run Rules on messages after reading

Help & Suggestions

Submit Outlook Feature Requests

Slipstick Support Services

Buy Microsoft 365 Office Software and Services

Visit Slipstick Forums.

What's New at Slipstick.com

Home | Outlook User | Exchange Administrator | Office 365 | Outlook.com | Outlook Developer
Outlook for Mac | Common Problems | Utilities & Addins | Tutorials
Outlook & iCloud Issues | Outlook Apps
EMO Archives | About Slipstick | Slipstick Forums
Submit New or Updated Outlook and Exchange Server Utilities

Send comments using our Feedback page
Copyright © 2025 Slipstick Systems. All rights reserved.
Slipstick Systems is not affiliated with Microsoft Corporation.

:wpds_smile::wpds_grin::wpds_wink::wpds_mrgreen::wpds_neutral::wpds_twisted::wpds_arrow::wpds_shock::wpds_unamused::wpds_cool::wpds_evil::wpds_oops::wpds_razz::wpds_roll::wpds_cry::wpds_eek::wpds_lol::wpds_mad::wpds_sad::wpds_exclamation::wpds_question::wpds_idea::wpds_hmm::wpds_beg::wpds_whew::wpds_chuckle::wpds_silly::wpds_envy::wpds_shutmouth:
wpDiscuz

Sign up for Exchange Messaging Outlook

Our weekly Outlook & Exchange newsletter (bi-weekly during the summer)






Please note: If you subscribed to Exchange Messaging Outlook before August 2019, please re-subscribe.

Never see this message again.

You are going to send email to

Move Comment