Exhange Hidden Arbitration Mailboxes (vetgedrukt zijn de commando’s die ik heb uitgevoerd om de betreffende mailboxen te verplaatsen naar de nieuwe Mailbox Database)
Mailbox Role Prerequisites
Failed
Error:
This Mailbox server is responsible for generating an Offline Address Book. Removal of the Mailbox role is not permitted
Click here for help... http://go.microsoft.com/fwlink/?linkid=30939&l=en&v=ExBPA.14&id=d0faeb2a-79d3-4ded-aa40-20f3b187b414
Error:
Uninstall cannot continue. Database 'Mailbox Database 1436824687': This mailbox database contains one or more mailboxes, mailbox plans, archive mailboxes, or arbitration mailboxes. To get a list of all mailboxes in this database, run the command Get-Mailbox -Database <Database ID>. To get a list of all mailbox plans in this database, run the command Get-MailboxPlan. To get a list of archive mailboxes in this database, run the command Get-Mailbox -Database <Database ID> -Archive. To get a list of all arbitration mailboxes in this database, run the command Get-Mailbox -Database <Database ID> -Arbitration. To disable a non-arbitration mailbox so that you can delete the mailbox database, run the command Disable-Mailbox <Mailbox ID>. To disable an archive mailbox so you can delete the mailbox database, run the command Disable-Mailbox <Mailbox ID> -Archive. Arbitration mailboxes should be moved to another server; to do this, run the command New-MoveRequest <parameters>. If this is the last server in the organization, run the command Disable-Mailbox <Mailbox ID> -Arbitration -DisableLastArbitrationMailboxAllowed to disable the arbitration mailbox. Mailbox plans should be moved to another server; to do this, run the command Set-MailboxPlan <MailboxPlan ID> -Database <Database ID>.
Click here for help... http://go.microsoft.com/fwlink/?linkid=30939&l=en&v=ExBPA.14&id=4a96fd69-9cec-4a48-9571-5c9e8ab3cfe9
Elapsed Time: 00:00:13
[PS] C:\Windows\system32>Get-Mailbox -Database "Mailbox Database 1436824687" -Archive
[PS] C:\Windows\system32>Set-AdServerSettings -ViewEntireForest $True
[PS] C:\Windows\system32>Get-Mailbox -Arbitration -Database "Mailbox Database 1436824687"
Name Alias ServerName ProhibitSendQuota
---- ----- ---------- -----------------
FederatedEmail.4c1f4d8... FederatedEmail.4c... mailserverold 1 MB (1,048,576 bytes)
SystemMailbox{1f05a927... SystemMailbox{1f0... mailserverold unlimited
SystemMailbox{e0dc1c29... SystemMailbox{e0d... mailserverold unlimited
[PS] C:\Windows\system32>get-mailbox -arbitration -database "Mailbox Database 1436824687" | Format-Table name,servername
Name ServerName
---- ----------
FederatedEmail.4c1f4d8b-8179-4148-93bf-00a95fa1e042 mailserverold
SystemMailbox{1f05a927-8f4d-4477-8368-90c487638598} mailserverold
SystemMailbox{e0dc1c29-89c3-4034-b678-e6c29d823ed9} mailserverold
[PS] C:\Windows\system32>Get-MailboxDatabase
Name Server Recovery ReplicationType
---- ------ -------- ---------------
Mailbox Database 1436824687 mailserverold False None à OUD
Mailbox Database 0587546743 mailservernew False None à NEW
[PS] C:\Windows\system32>get-mailbox -arbitration -database 'Mailbox Database 1436824687' | new-MoveRequest -targetdatabase 'Mailbox Database 0587546743'
DisplayName Status TotalMailboxSize TotalArchiveSize PercentComplete
----------- ------ ---------------- ---------------- ---------------
Microsoft Exchange Fed... Queued 0 B (0 bytes) 0
Microsoft Exchange App... Queued 0 B (0 bytes) 0
Microsoft Exchange Queued 260.7 KB (266,922 bytes) 0
[PS] C:\Windows\system32>get-mailbox -arbitration -database "Mailbox Database 1436824687" | Format-Table name,servername
[PS] C:\Windows\system32>
Informatieve links
http://exchangemaster.wordpress.com/2010/03/24/cannot-remove-a-mailbox-database-in-exchange-2010/
Are you trying to remove a mailbox database and you have removed all the users mailboxes but you cant because it says: “mailbox database contains one or more mailboxes or arbitration mailboxes”
Solutions
¦Move the mailboxes (if you have a database to move to) ¦Set-AdServerSettings -ViewEntireForest $True
¦get-mailbox –arbitration –database | new-MoveRequest –targetdatabase
¦get-moverequest = Look for compleation
¦get-moverequest | remove-moverequest
¦Remove-mailboxdatabase –id
¦Disable the mailboxes (no other database to move to, but don’t want to delete the ID) ¦Set-AdServerSettings -ViewEntireForest $True
¦get-mailbox –arbitration –database <databasename> | disable-mailbox
¦Remove-mailboxdatabase –id
¦Remove the mailboxes (Completely removing Exchange 2010) ¦Set-AdServerSettings -ViewEntireForest $True
¦get-mailbox –arbitration –database <databasename> | remove-mailbox
¦Remove-mailboxdatabase –id
Note: Only do option 2 or 3 if you are removing exchange entirely, if you intend to keep exchange in your environment you should do a move, if for some reason that doesn’t work and you disable or remove it you need to create a new arbitration mailbox “new-mailbox -arbitration”
No Comments