小编典典

Windows服务如何确定其ServiceName?

c#

我看了一下,却找不到一个简单的问题:

Windows服务如何确定为其启动的ServiceName?

我知道的安装可以在注册表破解并添加命令行参数,但在逻辑上似乎像它 应该 是不必要的,因此这个问题。

我希望比注册表黑客更干净地运行单个二进制文件的多个副本。

编辑

这是用C#编写的。我的应用程序 Main() 入口点根据命令行参数执行不同的操作:

  • 安装或卸载服务。命令行可以提供非默认的ServiceName,并且可以更改辅助线程的数量。
  • 作为命令行可执行文件运行(用于调试),
  • 作为“ Windows服务”运行。在这里,它创建了我的 ServiceBase 派生类的实例,然后调用 System.ServiceProcess.ServiceBase.Run(instance);。

当前,安装步骤将服务名称和线程数附加到注册表中的 ImagePath ,以便应用程序可以确定其为ServiceName。


阅读 1523

收藏
2020-05-19

共1个答案

小编典典

来自:https
:
//connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=387024

这是WMI解决方案。覆盖 ServiceBase.ServiceMainCallback() 可能也可以,但是这似乎对我有用。

    protected String GetServiceName()
    {
        // Calling System.ServiceProcess.ServiceBase::ServiceNamea allways returns
        // an empty string,
        // see https://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=387024

        // So we have to do some more work to find out our service name, this only works if
        // the process contains a single service, if there are more than one services hosted
        // in the process you will have to do something else

        int processId = System.Diagnostics.Process.GetCurrentProcess().Id;
        String query = "SELECT * FROM Win32_Service where ProcessId = " + processId;
        System.Management.ManagementObjectSearcher searcher =
            new System.Management.ManagementObjectSearcher(query);

        foreach (System.Management.ManagementObject queryObj in searcher.Get()) {
            return queryObj["Name"].ToString();
        }

        throw new Exception("Can not get the ServiceName");
    }
2020-05-19