Skip to content

Instantly share code, notes, and snippets.

@jangeador
Created October 28, 2015 20:28
Show Gist options
  • Save jangeador/b2dfe9676eb2377cdcdc to your computer and use it in GitHub Desktop.
Save jangeador/b2dfe9676eb2377cdcdc to your computer and use it in GitHub Desktop.
Disable Mailbox for Active Directory Disabled Accounts
Get-Mailbox -resultsize unlimited | where { $_.ExchangeUserAccountControl -match 'AccountDisabled'} | disable-mailbox
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment