我开发了一个窗口应用程序,还创建了一项服务。我在窗口应用程序中使用编码启动服务,但出现错误,例如无法在计算机上打开窗口服务'.'
我使用了下面的代码。
ServiceController controller = new ServiceController("SeoMozScheduleService");
if (controller.Status == ServiceControllerStatus.Stopped)
{
controller.Start();
}
如果我右键单击应用程序并单击以管理员身份运行,那么它对我来说很好......