语境
Windows 2008 64 位。
我安装了一个充当安装程序的 .NET 服务。
背景
我正在使用此代码(来源:Marc Gravell)来安装服务:
using (var inst = new AssemblyInstaller(typeof(MyNamespace.Program).Assembly, new string[] { })) {
IDictionary state = new Hashtable();
inst.UseNewContext = true;
try {
if (uninstall) {
inst.Uninstall(state);
} else {
inst.Install(state);
inst.Commit(state);
}
} catch {
try {
inst.Rollback(state);
} catch { }
throw;
}
}
问题
一切正常,没有例外,但在那之后,我尝试运行以下代码来启动刚刚安装的服务:
using (var sc = new ServiceController("the service's name"))
{
sc.Start();
sc.WaitForStatus(ServiceControllerStatus.Running, TimeSpan.FromSeconds(20));
}
我得到一个例外:
System.InvalidOperationException:在计算机“。”上找不到服务 [服务名称在此处]。---> System.ComponentModel.Win32Exception: 指定的服务不作为已安装的服务存在 --- 内部异常堆栈跟踪结束 --- 在 System.ServiceProcess.ServiceController.GenerateNames() 在 System.ServiceProcess.ServiceController.get_ServiceName() 在 System.ServiceProcess.ServiceController.Start(字符串 [] 参数) 在 System.ServiceProcess.ServiceController.Start() 在...(我的代码详细信息)
我不明白为什么,因为:
ServiceInstaller
服务的名称与(在ServiceName
属性中)中的名称完全相同- 代码在不同的服务中执行,该服务在 本地系统帐户下运行。