removing Disconnected mailboxes in exchange 2007
Is There any way of removing Disconnected mailboxes in exchange 2007 with out using cmdlets
July 23rd, 2008 9:33pm
You can remove it with Remove-Mailbox command.
$Temp = Get-MailboxStatistics | Where{$_.DisplayName -eq User Name}
Remove-Mailbox -Database DB Name -StoreMailboxIdentity $Temp.MailboxGuid
References:
Remove-Mailbox
Cant see Deleted Mailbox in Disconnected Mailbox under RecipientConfiguration
Free Windows Admin Tool Kit Click here and download it now
July 24th, 2008 11:15am
There is no method to delete/clean disconnected mailbox in the EMC User interface, we had to use the Powershell cmdlet to do it, please refer to Amit's posted if you like the cmdlet way.
-Jason
July 28th, 2008 1:13pm