To summarize, to increase the file upload size to 50 MiB in IIS7, add the lines below in the correct section of the Web.config file:
<system.webServer> <security> <requestFiltering> <requestLimits maxAllowedContentLength="52428800" /> </requestFiltering> </security> </system.webServer>
and
<system.web> <httpRuntime maxRequestLength="51200" /> </system.web>
1024 X 1024 X 50 = 5242880 bytes in 50 miles
1024 X 50 = 51200 KiB in 50 MiB
source share