Remote Web Workplace freezes and failures

article #851, updated 3104 days ago

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:

  1. CD to %ProgramFiles%\Windows Small Business Server\Bin\WebApp\RemoteAccess
  2. Open the file web.config, using Notepad
  3. In web.config, search for item <serviceHostingEnvironment aspNetCompatibilityEnabled="true" />
  4. Change the item to <serviceHostingEnvironment aspNetCompatibilityEnabled="true" minFreeMemoryPercentageToActivateService="0" />
  5. Save and close
  6. Run IISRESET.

The above is summarized from:

http://blogs.technet.com/b/sbs/archive/2014/01/13/troubleshooting-an-unexpected-error-occurred-message-when-using-remote-web-access-to-connect-to-computers.aspx

Categories: