Categories
How-To Technical

Office 365: Convert Mailbox to Shared Mailbox after Cutover Migration

When performing a cut-over migration the Exchange attribute indicating that the mailbox was a shared mailbox is lost. To correct this I have done the following steps: List out all of the shared mailboxes form my on-premises Exchange and export them into a CSV file. Get-Mailbox -ResultSize Unlimited -RecipientTypeDetails SharedMailbox | Select UserPrincipalName | Export-Csv […]

Categories
How-To

How To Create Shared Mailbox In Exchange 2010

Open the Exchange Shell and type the following command: New-Mailbox shared –shared –userprincipalname shared@jermsmit.com If the mailbox was already a user mailbox and you are converting to shared type the following command: Set-Mailbox -Identity shared@jermsmit.com -Type Shared You can now verify that the box is indeed a shared mailbox by typing the following command: Get-Mailbox […]

Categories
How-To Technical

Removing an auto-mapped mailbox

In Exchange Server 2010 SP1, shared mailbox with full access rights will be auto mapped to the users given such rights. This is fine for that user who doesn’t seem to know how to add an additional mailbox to their Outlook 2007, 2010, 2013 client. But what about those support and systems admins who grant themselves access for troubleshooting […]