Change Recipient Type of a Mailbox in Exchange

Allerlei tweaks voor Exchange

Moderator: Theet

Theet
Posts: 200
Joined: Mon 27 Sep 2010, 16:35

Change Recipient Type of a Mailbox in Exchange

Post 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