| | | | |

Set Receive and Send size limits Exchange PowerShell

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.

 

Set-Mailbox Shaun.Hardneck -MaxReceive "15 MB" -MaxSend "15 MB"

Now lets look at finding all users with “MaxSendSize” limits greater than “5 MB”

Get-Mailbox -ResultSize Unlimited | Where-Object {$_.MaxSend -gt "5 MB"}

 

#ThatLazyAdmin

Similar Posts

Leave a Reply

Your email address will not be published. Required fields are marked *