Enable or Disable Clutter for Office 365 User Mailboxes
This blog post is just a quick guide for Office 365 Administrators and explains how you can enable or disable Clutter for a particular user or all users.
For greater insight, analytics and adoption within your Office 365 tenant, learn more about our Office 365 management software.
Firstly, connect to Office 365 using PowerShell.
To Enable or Disable Clutter for one user
To enable clutter for one user run:
PS C:\Scripts> Set-Clutter -Identity user@domain.com -Enable $true
To disable clutter for one user run:
PS C:\Scripts> Set-Clutter -Identity user@domain.com -Enable $false
To Enable or Disable Clutter for all users
To enable clutter for all users run:
PS C:\Scripts> Get-Mailbox | Set-Clutter -Enable $true
To disable clutter for all users run:
PS C:\Scripts> Get-Mailbox | Set-Clutter -Enable $false