Page 1 of 1

Change Recipient Type of a Mailbox in Exchange

Posted: Wed 05 Oct 2016, 16:26
by Theet
Change a mailbox to a Shared Mailbox, using the following PowerShell command:

Code: Select all

Get-Mailbox -Identity user@userdomain.com | Set-Mailbox -Type Shared
The different Recipient Types you can set on a Mailbox are:
  • Regular
  • Room
  • Equipment
  • Shared
Show a list of mailbox and their Recipient Type, using the following PowerShell command to validate your configuration settings:

Code: Select all

Get-Mailbox | ft Name, RecipientTypeDetails