Restarting IIS programmatically

回眸只為那壹抹淺笑 提交于 2019-11-29 15:50:03

问题


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?


回答1:


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




回答2:


FileName is wrong. try FileName = @"iisreset.exe"




回答3:


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.




回答4:


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#)




回答5:


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


来源:https://stackoverflow.com/questions/19103599/restarting-iis-programmatically

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!