Power Shell
Для блокирование любого из аккаунтов: Disable-mailbox user@domain.com
Для удаления майлбокса : Remove-Mailbox -Database <Database-Name> ; Clean-mailboxdatabase -identity "<server name>\<storage group name>\<mailbox database name>"
Для нахождения GUID: Get-MailboxStatistics -server <server name> | where-object { $_.DisconnectDate -ne $null } | Select DisplayName,MailboxGuid
Для уделения всех отключенных : $users = Get-MailboxStatistics | where-object { $_.DisconnectDate -ne $null } | Select DisplayName,MailboxGuid ; $users = Get-MailboxStatistics | where-object { $_.DisconnectDate -ne $null } | Select DisplayName,MailboxGuid