Reputation: 12813
I need to restart IIS from a C#/.NET application. This seems like a trivial issue, but I haven't had success thus far, and none of the answers from this question have worked.
I am a local administrator on the machine.
I've tried this:
var process = new Process
{
StartInfo =
{
Verb = "runas",
WorkingDirectory = @"C:\Windows\System32\",
FileName = @"issreset.exe"
}
};
process.Start();
but this throws a Win32Exception - cannot find the file specified.
I've also tried various combinations of putting the whole path in FileName
, and using UseShellExecute
but neither of those options helped.
I've also tried invoking it via the command line:
var process = new Process
{
StartInfo =
{
Verb = "runas",
WindowStyle = ProcessWindowStyle.Hidden,
FileName = @"cmd.exe",
Arguments = "/C iisreset"
}
};
process.Start();
and this works, but it gives a UAC prompt, which I cannot have as this application will be running without user intervention.
Is there anything else I could try?
Upvotes: 1
Views: 13158
Reputation: 2624
Another option to start the IIS:
string serviceName = "W3SVC"; //W3SVC refers to IIS service
ServiceController service = new ServiceController(serviceName);
service.Start();
service.WaitForStatus(ServiceControllerStatus.Running);// Wait till the service started and is running
Upvotes: 0
Reputation: 111
Right click on project name in Solution Explorer ->Add ->New Item-> Appliaction Manifest File.
In it edit the
<requestedPrivileges>
<requestedExecutionLevel level="requireAdministrator" uiAccess="false" />
</requestedPrivileges>
this should solve your issue.
Upvotes: 4
Reputation: 300
Alternatively (and cleaner) you could just use the ServiceController
class to subsequently stop and start the iis service.
You'll probably still need elevated privileges though... Impersonation might solve this; "impersonate an account with higher privileges." for restarting the service.
A good example of how to start/stop (and restart) a windows service can be found here: Start, Stop and Restart Windows Service (C#)
Upvotes: 2
Reputation: 11252
The exception you're getting is most likely caused by the fact that the user you are trying to run this application as does not have administrative privileges.
If you run your application as an administrator account then it should automatically launch iisreset with administrative privileges without a UAC prompt or an error.
How you should go about running your process as an administrator is a separate issue. The most common way is to create an application manifest:
http://msdn.microsoft.com/en-us/library/ms235229.aspx
Upvotes: 1