Link to home
Start Free TrialLog in
Avatar of pramod1
pramod1Flag for United States of America

asked on

exchange, outlook

one user keep getting notification that his mailbox is almost full. but I checked his mailbox  is below limit

I had got some  answer like this from previous expert , "But the  'Warning threshold' was not, that is why user is receiving the notification. but I am not getting the exact command to run






how to stop it,

I remember running set-managedfolderassistant?  or something, I am forgetting the command
Avatar of MacGyver80
MacGyver80
Flag of United States of America image

Option 1

This example processes the mailbox for a user with the alias Chris.

Start-ManagedFolderAssistant -Identity "Chris"

Option 2

This example uses the Get-Mailbox command to retrieve all the mailboxes that resolve from the ambiguous name resolution (ANR) search on the string "Chr" in the domain DC01 (for example, users such as Chris Ashton, Christian Hess, and Christa Geller), and the results are piped to the Start-ManagedFolderAssistant cmdlet for processing.

-Get-Mailbox -Anr Chr -DomainController DC01 | Start-ManagedFolderAssistant
ASKER CERTIFIED SOLUTION
Avatar of Mason Drew
Mason Drew
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial