Disconnected Mailboxes in Exchange 2007 PowerShell
Hi,
Having had an error using the GUI to view disconnected mailboxes in Exchange 2007 and decided to look into using the command line.
To display mailboxes that are disconnected use the following command.
Get-MailboxStatistics -Server <server> | where { $_.DisconnectDate -ne $null } | select DisplayName,DisconnectDate
Replace <server> with the name of your mailbox server.
This gives a list of the disconnected mailboxes.
To reconnect you use the command below
Connect-mailbox –database <mailbox database name> –Identity <disconnected mailbox name> –User <User to connect to>
by Nathan’s Exhange Blog