Exchange 2010 – Increase the maximum accepted content length
Howto increase the maximum accepted content length in Exchange Web Services.
- Open Explorer
- Navigate to C:\Program Files\Microsoft\Exchange Server\ClientAccess\exchweb\ews
- Open the file Web.Config in with notepad
- Go to the end of the file
- Insert the following XML tags before the </configuration> tag, note that 104857600 indicates 100mb. <pre><system.webServer> <security> <requestFiltering> <requestLimits maxAllowedContentLength=”104857600” /> </requestFiltering> </security> </system.webServer>
</pre>
- Restart IIS:
<pre>iisreset</pre>