vote up 1 vote down star

Is it possible to restart IIS7 using C#? If so, how?

flag

68% accept rate
I'm curious, why do you want this? – Eamon Nerbonne Aug 22 at 10:42

2 Answers

vote up 1 vote down

Just execute the command-line option using System.Diagnostics.Process.Start();

link|flag
vote up 4 vote down
System.Diagnostics.Process.Start(@"C:\windows\system32\iisreset.exe");

should do the trick :)

Dan

link|flag
4  
Probably should use environment variable for windows path though :) – Daniel Elliott Aug 22 at 10:02

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.