Skip to content

Instantly share code, notes, and snippets.

@mattmcnabb
Created August 23, 2016 01:54
Show Gist options
  • Save mattmcnabb/bbe0f0d02439e6affb240d594dc3642a to your computer and use it in GitHub Desktop.
Save mattmcnabb/bbe0f0d02439e6affb240d594dc3642a to your computer and use it in GitHub Desktop.
Blog_exchange-online-managing-clutter
Get-Mailbox -Filter * -ResultSize Unlimited | Foreach {
$DN = $_.DistinguishedName
$Status = Get-Clutter -Identity $DN | Select -ExpandProperty isEnabled
if (!$Status)
{
Set-Clutter -Identity $DN -Enable $false
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment