How can I restart(recycle) IIS Application Pool from C# (.net 2)?
Appreciate if you post sample code?
|
How can I restart(recycle) IIS Application Pool from C# (.net 2)? Appreciate if you post sample code? |
||||
|
|
|
John, If you're on IIS7 then this will do it if it is stopped. I assume you can adjust for restarting without having to be shown.
If you're on IIS6 I'm not so sure, but you could try getting the web.config and editing the modified date or something. Once an edit is made to the web.config then the application will restart. |
|||||||||||||||
|
|
Here we go:
|
|||||||||||||
|
|
Maybe this articles will help: |
||||
|
|
|
Recycle code working on IIS6:
|
|||
|
|
|
The code below works on IIS6. Not tested in IIS7.
You can change "Recycle" for "Start" or "Stop" also. |
|||||||
|
|
This out to help http://www.codeproject.com/KB/cs/Start_Stop_IIS_Website.aspx. |
|||
|
|