Exchange 2010: Move or delete system mailboxes
The following commands can be used to move or delete the system mailboxes: Move system mailboxes to another database: Get-Mailbox -Arbitration -Database QUELLDB | New-MoveRequest -TargetDatabase ZIELDB Disable system mailboxes Get-Mailbox -Arbitration -Database QUELLDB | Disable-Mailbox -Arbitration Delete system mailboxes and delete AD account: Get-Mailbox -Arbitration -Database QUELLDB | Remove-Mailbox -Arbitration -RemoveLastArbitrationMailboxAllowed To create the system mailboxes again, even if ... Read more