Delete Disconnected Mailbox from Exchange 2007
2010-08-13
Active Directory, Exchange, Exchange 2007, Microsoft, PowerShell
Harry Caskey
1
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 […]