Set Mailbox Max Send and Max Receive limits Lets have a quick look at a one liner to set user mailbox send and receive size limits in Exchange Powershell.
1 |
Set-Mailbox Shaun.Hardneck -MaxReceive "15 MB" -MaxSend "15 MB" |
Now lets look at finding all users with “MaxSendSize” limits greater than “5 MB”
1 |
Get-Mailbox -ResultSize Unlimited | Where-Object {$_.MaxSend -gt "5 MB"} |
#ThatLazyAdmin
Leave a Comment