这是一个使用VS2015和.NET Framework 4.5的Windows服务项目。
我尝试通过构建后操作安装我的服务,然后使用ServiceController.Start()
自动启动它。这是我尝试启动服务的代码:
private void ProjectInstaller_Committed(object sender, InstallEventArgs e)
{
using (var sw = new System.IO.StreamWriter(Console.OpenStandardOutput()))
{
using (ServiceController sc = new ServiceController(serviceInstaller1.ServiceName))
{
try
{
sw.Write("Starting service...");
sc.Start();
sc.WaitForStatus(ServiceControllerStatus.Running);
sw.Write("Service status is now set to {0}.", sc.Status.ToString());
}
catch (InvalidOperationException)
{
sw.Write("Could not start the service.");
}
}
}
}
服务安装得很好,但我的ServiceController.WaitForStatus()
电话似乎一直在等待。我试过从Committed
和AfterInstall
事件中调用它。
答案 0 :(得分:2)
终于搞清楚了。我的Start()
电话实际上失败了,直到我进入事件查看器,我才注意到这一点。错误消息类似于:
Your process does not have access rights to this namespace
搜索出现的错误消息another SO post,其中接受的答案为我提供了诀窍。希望这有助于有人在路上。