RWW often freezes and fails. Happily, the amazing Jared Dexter found a fix: when memory usage reaches a certain high degree, IIS refuses to cooperate, and we can change this. In an administrative CMD:
- CD to
%ProgramFiles%\Windows Small Business Server\Bin\WebApp\RemoteAccess
- Open the file
web.config
, using Notepad - In web.config, search for item
<serviceHostingEnvironment aspNetCompatibilityEnabled="true" />
- Change the item to
<serviceHostingEnvironment aspNetCompatibilityEnabled="true" minFreeMemoryPercentageToActivateService="0" />
- Save and close
- Run
IISRESET
.
The above is summarized from: