SOLVED

clutter folder

Brass Contributor

Hi experts what is clutter folder.

One of my user says that his mails are moving to clutter folder, how can i disable it.

we dont owa access, how do i disable mails going to clutter folder for that user from exchange.

1 Reply
best response confirmed by Rising Flight (Brass Contributor)
Solution

Hi Rising,

 

You can follow this link to disable Clutter https://support.office.com/en-us/article/use-clutter-to-sort-low-priority-messages-in-outlook-7b50c5... with the user mailbox.

 

You can also disable the clutter with powershell.

Set-Clutter -Identity user -Enable $false

 

Or to all users

Get-Mailbox -ResultSize Unlimited | Set-Clutter -Enable $false​

 

1 best response

Accepted Solutions
best response confirmed by Rising Flight (Brass Contributor)
Solution

Hi Rising,

 

You can follow this link to disable Clutter https://support.office.com/en-us/article/use-clutter-to-sort-low-priority-messages-in-outlook-7b50c5... with the user mailbox.

 

You can also disable the clutter with powershell.

Set-Clutter -Identity user -Enable $false

 

Or to all users

Get-Mailbox -ResultSize Unlimited | Set-Clutter -Enable $false​

 

View solution in original post