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.

No comments:

Post a Comment