I have been in the process of migrating Mailboxes from an Exchange 2003 enviroment to Exchange 2010, during the migration some of my mailboxes have been coming over as linked mailboxes and not users mailboxes. Here is an easy fix incase you ever hit this issue.
The reason it is showing as a Linked Mailbox is because the LinkedMasterAcount is set’
- Open up the EMS as Administrator
- To see the LinkedMasterAccount run this command “Get-User -Identity “user” | FL LinkedMasterAccount
- Run the following command “Set-User -Identity “user” -LinkedMasterAccount $null” This command will not have any output, but it will set the LinkedMasterAccount to null
- To verify run the same Get-User command from above. I will be Blank, or should be.
The account will now show as a User Mailbox and not a Linked Mailbox. If you need to do more than one account this command does accepting pipeline input, you could also use the Import-CSV Cmdlet to use a CSV as Input. To find out more information on the command go HERE