Where is it possible to adjust the timeout for how long a user session is left open on the web interface? Can the change be made directly through NCM or is it an IIS setting that must be configured?
You'll need to open this file: <install dir>:\Inetpub\SolarWindsNCM\web.config
Search for "timeout" and change the value to your desired value:
<authentication mode="Forms"> <forms name="authTicket" loginUrl="Default.aspx" timeout="15" defaultUrl="ViewLayout.aspx"> </forms> </authentication>
You may need to restart the IIS for the setting to take effect.