我使用下面的代码.
ServiceController controller = new ServiceController("SEOMozScheduleService"); if (controller.Status == ServiceControllerStatus.Stopped) { controller.Start(); }
如果我右键单击应用程序,然后单击运行作为管理员,它的工作正常为我…
<requestedExecutionLevel level="requireAdministrator" uiAccess="false" /> </requestedPrivileges>
但是,如果启用了UAC,则更改此设置将导致系统提示您每次以管理员身份运行应用程序.