我开发一个窗口应用程序,我也创建一个服务.我在窗口应用程序中使用编码开始服务,但是我收到一个错误,像在计算机上无法打开窗口服务.
我使用下面的代码.
ServiceController controller = new ServiceController("SEOMozScheduleService"); if (controller.Status == ServiceControllerStatus.Stopped) { controller.Start(); }
如果我右键单击应用程序,然后单击运行作为管理员,它的工作正常为我…
解决方法
@H_404_11@ 要使您每次打开应用程序时自动执行,您必须将 add a manifest file提供给您的解决方案,然后将文件中的requestedExecutionLevel节点更新为如下所示:<requestedExecutionLevel level="requireAdministrator" uiAccess="false" /> </requestedPrivileges>