How to Enable and Disable" Clutter" Feature in office 365 Globally

Опубликовано: 02 Май 2026
на канале: jijitechnologies
663
0

http://www.jijitechnologies.com/blogs...

How to Enable Clutter for all mailboxes?

1.Get all the mailboxes which has Clutter disabled.
2.Then enable Clutter for those mailboxes.

To get all the mailboxes we need to use powershell command 'Get-Mailbox'.
To enable Clutter, we need to use 'Set-Clutter' command.

$ClutterDis=Get-Mailbox -ResultSize Unlimited |Where-Object {(Get-Clutter -Identity $_.alias).IsEnabled -eq $false }
$ClutterDis |ForEach-Object {
Set-Clutter -Identity $_.alias -Enable $true
}

How to Disable Clutter for all mailboxes?

1.Get all the mailboxes which has Clutter enabled.
2.Then disable Clutter for those mailboxes.

To get all the mailboxes we need to use powershell command 'Get-Mailbox'.
To disable Clutter, we need to use 'Set-Clutter' command.

$ClutterDis=Get-Mailbox -ResultSize Unlimited |Where-Object {(Get-Clutter -Identity $_.alias).IsEnabled -eq $true }
$ClutterDis |ForEach-Object {
Set-Clutter -Identity $_.alias -Enable $false
}