Hello,
I try to remove an empty mailbox database, I verified and there are no any user, archive or user mailbox in it. However, exchange still repots that it is not empty.
How can I delete it? Thank you.
Technology Tips and News
Hello,
I try to remove an empty mailbox database, I verified and there are no any user, archive or user mailbox in it. However, exchange still repots that it is not empty.
How can I delete it? Thank you.
It's possible there's arbitration mailboxes in there. Following the instructions in this article: http://exchangeserverpro.com/exchange-2013-database-removal-error-this-mailbox-database-contains-one-or-more-mailboxes/
Addition to what B0ndoo7 said, if this is Exchange 2016 Preview server then make sure you moved AuditLog database too...
Get-Mailbox -Database DefaultFirstDBName -AuditLog
Move it using this...
Get-Mailbox -Database DefaultFistDBName -AuditLog | New-MoveRequest TargetDatabase New-E2016-DBName
Have you tried exactly what is states in the error message? Get-Mailbox -Database <name> | ft? Also if nothing comes up for mailboxes/arbitration/system mailboxes then it is most likely Soft Deleted Mailboxes that are still present on this database.
Try using the following command...
Remove-StoreMailbox -Database <name> -Identity user1 -MailboxState SoftDeleted
You can also reference the below link for additional details on Remove-StoreMailbox cmdlet.
You can also try Clean-Mailboxdatabase cmdlet as well.
Will.
Have you tried exactly what is states in the error message? Get-Mailbox -Database <name> | ft? Also if nothing comes up for mailboxes/arbitration/system mailboxes then it is most likely Soft Deleted Mailboxes that are still present on this database.
Try using the following command...
Remove-StoreMailbox -Database <name> -Identity user1 -MailboxState SoftDeleted
You can also reference the below link for additional details on Remove-StoreMailbox cmdlet.
You can also try Clean-Mailboxdatabase cmdlet as well.
Will.
Hi,
what is your exchange version?
Please follow the above suggestion to make some actions.
We can also refer to the below article to get more detailed information about the error message:
Regards,
David