Automatically start ASP.NET application pool?

Is there a way to automatically deploy an ASP.NET application pool after IISRESET or a scheduled reset so that the original user cannot wait for the application pool to load?

+2


source to share


6 answers


Request page from app after iisreset. This is easily automated.



+2


source


SharePointer Joel Oleson (formerly Microsoft) has a warm-up script available on his old MS blog. Find asp.net warm up scripts

for many others.



Typically the application pool will recycle overnight. This way you can run this script as a scheduled task before people come to work and people don't have to wait.

+2


source


If you are using IIS 7 there is an IIS Warm Up application plugin app to help

I wrote a blog post about my experiences using it here (don't know if I'm allowed to post on my own content?):

http://www.diaryofaninja.com/blog/2010/05/06/keep-your-aspnet-websites-warm-and-fast-247

+1


source


There is such a thing for IIS7 . But I haven't tried it, I can't say much more.

0


source


I have sometimes used a VB-script that asks for a page and configured it to run as a scheduled job. Works great and installs in a couple of minutes.

0


source


You can try the Application Pool Recycle Utility for SharePoint Developers , but the creator does not recommend it for manufacturing sites.

0


source







All Articles