Restarting IIS programmatically

自作多情 提交于 2019-11-30 16:35:21

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

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

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.

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

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