Get and Connect a Disconnected Mailbox Using PowerShell To quickly find all disconnected Mailboxes in your Exchange environment launch EMC and run the following one liner.
1 2 3 |
Get-MailboxStatistics -Server ThaLazyExMBX01| where { $_.DisconnectDate -ne $null } | select DisplayName,MailboxGuid,Database,DisconnectDate |
The Results will look as follow: Now that we have the results lets refine the search to find a specific “Disconnected Mailbox”
1 2 |
Get-MailboxStatistics -server ThatLazyExMBX01| Where-object {($_.DisconnectDate -ne $null) -and ($_.DisplayName -eq "Manju")} |
The Results will look…
Leave a Comment