IIS application pool not on server power up?
Hi I have a problem with one server and the problem is that the iis server does not automatically start one of the application pools that we have for one of our applications, but if you go to iis and right click on the application pool and click Start, application pools will start normally.
Any idea
Jean
0
Jean
a source
to share
2 answers
Make sure the application pool is configured to autostart:
adsutil.vbs get w3svc/AppPools/DefaultAppPool/AppPoolAutostart
Chnage DefaultAppPool for your application pool name.
To configure it to start automatically, use
adsutil.vbs set w3svc/AppPools/DefaultAppPool/AppPoolAutostart true
+1
a source to share