Email Rejected - Message Size Limit Error - Change Exchange Limits

Created by Gil Dening, Modified on Tue, 15 Dec, 2020 at 4:26 PM by Gil Dening

Description


If you need to change the max throughput size on an exchange server


Requirements


 - Powershell access to the exchange server


The Process


Create a powershell *.ps1 file containing the following.


get-transportconfig | Set-TransportConfig -maxsendsize 100MB -maxreceivesize 100MB; get-receiveconnector | set-receiveconnector -maxmessagesize 100MB; get-sendconnector | set-sendconnector -maxmessagesize 100MB; get-mailbox | Set-Mailbox -Maxsendsize 100MB -maxreceivesize 100MB


This assumes a desired size of 100MB, but switch out the 100MB as needed to whatever size you want.

Run the file(as administrator)



Was this article helpful?

That’s Great!

Thank you for your feedback

Sorry! We couldn't be helpful

Thank you for your feedback

Let us know how can we improve this article!

Select at least one of the reasons
CAPTCHA verification is required.

Feedback sent

We appreciate your effort and will try to fix the article