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 viewed in the Select server area.

Mailboxes disconnected on the EXC1 server;

Mailboxes disconnected on the EXC2-CORE server;

To activate mailboxes that are disconnected.

Selected. Yes, connect to the user account above.

The enabled mailbox can be viewed in the mailboxes area.

The mailbox address may need to be added again.

To activate via Exchange Shell;

Connect-Mailbox –Identity “Serhat SEYHAN” -Database DB2 –User “Serhat SEYHAN”

The enabled user can be viewed in the mailboxes area.

I hope this article would be helpful to some of you.

Share With