Change Recipient Type of a Mailbox in Exchange
Posted: Wed 05 Oct 2016, 16:26
Change a mailbox to a Shared Mailbox, using the following PowerShell command:
The different Recipient Types you can set on a Mailbox are:
Code: Select all
Get-Mailbox -Identity user@userdomain.com | Set-Mailbox -Type Shared
- Regular
- Room
- Equipment
- Shared
Code: Select all
Get-Mailbox | ft Name, RecipientTypeDetails