Get all disconnected mailbox via EMS
After you disable mailbox, you can view all the disconnected mailbox using Exchange Management Shell (EMS).
Get-MailboxStatistics -Server <server> | where { $_.DisconnectDate -ne $null } | select DisplayName,DisconnectDate
