Disabled mailbox not appearing in Disconnected Mailbox menu [SOLVED] – Exchange 2007
Mon, Feb 28, 2011In Exchange 2007, if a recently-disabled mailbox does not appear in the Disconnected Mailbox menu in EMC (if you wanted to reconnect it to a different user, for instance), simply run one of the following commands in Powershell:
Clean-MailboxDatabase \servername\SGName\Store
Cleans Database of the individual store
Get-Mailboxdatabase | Clean-MailboxDatabase
Cleans all databases in the Organization
Get-Mailboxdatabase | Where{ $_.Server –eq “
Cleans all databases in the specific store
Get-Mailboxdatabase | Where{ $_.Name –eq “
Cleans all databases that match the specific name given in “Databasename”