Configure IIS 7.5 website to never shut down

iis-7.5

I'm configuring IIS 7.5 website hosting several web services to never-shut-down. I understand that there is a setting in applicationHost.config to enable this

<applicationPools>
  <add name="AppPoolName" managedRuntimeVersion="v4.0" startMode="AlwaysRunning" />
  ...
</applicationPools>

However, I would like configure this in IIS Manager user interface, e.g. as an advanced setting of the application pool. Is there such a setting somewheere in IIS Manager?

EDIT:

I found another possibility which led me here:

If you want to extend the length of the time-out setting, just change
it from the default of 20 to however many minutes you want. You can
also adjust the setting to 0 (zero) which effectively disables the
timeout so that the application pool will never shut down due to being
idle.

However, I would like to know if I can set startMode="AlwaysRunning" in GUI.

Best Answer

In IIS 7.5+, it is possible to do this through the GUI. Right click on the Application Pool -> Advanced Settings -> General -> Start Mode. Change that to "Always running" and it should accomplish what you are looking for.

Have a look at below screenshot:

enter image description here

Cheers!