How to Activate Disconnected Mailboxes?
In this article, we will examine how to activate disconnected mailboxes. To view the mailboxes that have been disconnected in your organization, you need to run the following commands. $db = Get-MailboxDatabase $db | foreach {Get-MailboxStatistics -Database $_.DistinguishedName} | where {$_.DisconnectReason -eq "Disabled"} | Format-Table DisplayName,Database,DisconnectDate If you want to export the list as txt, add >C:disable.txt at the end of the command. Disconnected mailboxes can be activated via GUI and Exchange Shell. To activate via GUI; recipients / mailboxes / … / Connect a mailbox Disconnected users on the servers can be…continue reading →