Showing posts with label set-clutter is not recognized. Show all posts
Showing posts with label set-clutter is not recognized. Show all posts

Sunday 5 June 2016

Command to disable clutter for single user in Office365 server

Or, PowerShell command to disable clutter option for single user in Office365 server.
Or, PowerShell command to disable clutter option for all users in Office365 server.


COMMAND FOR SINGLE USER:
-----------------------------------------------------------------------------------
Set-Clutter -Identity user@domain.com -Enable $false 
-----------------------------------------------------------------------------------

COMMAND FOR ALL USER:
----------------------------------------------------------------------------------
Get-Mailbox | Set-Clutter -Enable $false
----------------------------------------------------------------------------------

IMP Note: Be careful while executing the PowerShell commands. Select the command appropriately as per your requirement.