Delete Disconnected Mailbox from Exchange 2007
To do this you must open up the Exchange Management Shell on Exchange 2007. Then at the prompt you will want to find the GUID for the mailbox you wish to delete. You can do this by typing the following command: Get-MailboxStatistics | where-object { $_.DisconnectDate -ne $null } | Select DisplayName,MailboxGuid You should then […]