1

语境

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()
   在...(我的代码详细信息)

我不明白为什么,因为:

  1. ServiceInstaller服务的名称与(在ServiceName属性中)中的名称完全相同
  2. 代码在不同的服务中执行,该服务在 本地系统帐户下运行。
4

2 回答 2

0

可能是服务卡在等待状态,还没有完成注册,所以无法识别为已安装服务。
当您设置UseNewContext属性时 - 安装日志文件(“{Assembly name}.InstallLog”)是否包含任何有意义的信息?
另外,要检查这是否是权限问题,您是否可以尝试使用验证服务存在

sc query <ServiceName>

从管理命令窗口?

于 2014-10-02T06:43:02.600 回答
0

有一个安装日志可能会有所帮助。YouServiceName.InstallLog在服务的文件夹中查找文件。

为服务添加安装程序就足够了(对我来说)。你应该:

  • 在设计器中打开 Service.cs 文件,
  • 右键单击它,然后
  • 选择菜单选项“添加安装程序”。

它不会立即安装...您需要先创建安装程序类。

作为参考,另请参阅此问题

于 2016-07-15T19:50:11.263 回答