Here are some steps that worked for me in converting a user mailbox to a shared mailbox. Info: You can convert the following mailboxes from one type to another User mailbox to resource mailbox Shared mailbox to user mailbox Shared mailbox to resource mailbox Resource mailbox to user mailbox Resource mailbox to shared mailbox Example reason […]
Tag: Exchange2013
Quick an simple power shell line to list a mailbox type in the Exchange 2013 environment Get-Mailbox -Identity “mailbox-name” | Format-List RecipientTypeDetails Additional info on RecipientTypeDetails enumeration can be located here
Quick an simple power shell line to list all shared mailboxes in your Exchange 2013 environment. Get-Mailbox -ResultSize Unlimited -RecipientTypeDetails SharedMailbox What’s a Shared Mailbox A shared mailbox is a mailbox that multiple users can use to read and send email messages. Shared mailboxes can also be used to provide a common calendar, allowing […]