Increase Message Size Limits in Exchange 2013

Message size limits are an important mechanism to control mailbox sizes. One commonly asked question is about message size limits. There are basically three places where you can configure default message size limits on Exchange:

  • Organization transport settings
PS > Get-Transportconfig | ft maxsendsize, maxreceivesize
  • Send and receive connector settings
PS > Get-Receiveconnector | ft name, maxmessagesize 
PS > Get-Sendconnector | ft name, maxmessagesize
  • User mailbox settings
PS > Get-Mailbox Username | ft Name, Maxsendsize, maxreceivesize

Examples

The example below shows how to increase the size of messages accepted by the transport service to 35MB:

PS > Set-TransportConfig -MaxReceiveSize 35MB

To set message size limits on a mailbox to 20MB:

PS > Set-Mailbox "Nicolas" -MaxSendSize 20MB -MaxReceiveSize 20MB

 

Thanks for reading! You can follow me on Twitter @PrigentNico

About Nicolas 282 Articles
I work as an IT Production Manager, based in Paris (France) with a primary focus on Microsoft technologies. I have 10 years experience in administering Windows Servers. . I am a Microsoft MVP for Cloud & Datacenter Management. I also received the PowerShell Hero 2016 award by PowerShell.0rg. And finally, I am "MCSE: Cloud Platform and Infrastructure", "MCSA: Windows Servers", "Administering & Deploying SCCM", and CheckPoint CCSA certified.