Show and move “hidden” Arbitration mailboxes in Exchange Server 2010
2010-03-29 15 Comments
So, let’s say you have a new installation of Exchange Server and you want to move all mailboxes, including Arbitration, from the default database created during the installation to a new mailbox database. Here is how to do it…
First of all, if you just try to delete the default database you will get this message:
Stating that the database isn’t empty, even though it does look empty if you do a get-mailbox for the specific database:
get-mailbox -Database “Mailbox Database 1905367170″
There is a switch that you should use if you want to see all mailboxes, even the “hidden” Arbitration mailboxes:
get-mailbox -Database “Mailbox Database 1905367170″ –Arbitration
This gives us different result then the first get-mailbox command:
As you can se the database isn’t as empty as we first thought. To move these mailboxes to the new database you can easily pipe the result of the get-mailbox command and create new move requests for all Arbitration mailboxes:
get-mailbox -Database “Mailbox Database 1905367170″ -Arbitration | New-MoveRequest –TargetDatabase “MailboxDatabase1″
So, good luck with the moves and please let me know if you bump in to any problems, thanks for reading!

Thank you 100 times over!
You’re Welcome, I’m just glad I can help :)
I could not get this to work, then I found the following from the Microsoft forums. Pointing the command to a domain controller in the hollow root domain saved the day.
http://social.technet.microsoft.com/Forums/sv-SE/exchange2010/thread/1ab0cb94-7f38-4d3c-bc1d-f27ab4f80129
Thank you, very much!!!
Thank you for reading :)
Thanks a million for this, it really saved my bacon!
My pleasure, glad it helped you out!
works like a charm! thnx!!!
regards,
leon
Great that it was usefull for you, thanks for commenting and reading!
Lifesaver!
Thank for the feedback, glad you could use it!
Thanks much for this! Solved my problem right away!
Great to hear, thanks for reading and commenting!
Thanks for the help with this.. Will this work if all the Exchnage services are stopped on the server i am trying to remove? If not, what services need to be running?
Hi Mike,
No it will not work if the services are stopped. You will at least have to start IIS and Information Store. Thanks for reading and I hope that I answered your question!