我看了一下,却找不到一个简单的问题:
Windows服务如何确定为其启动的ServiceName?
我知道的安装可以在注册表破解并添加命令行参数,但在逻辑上似乎像它 应该 是不必要的,因此这个问题。
我希望比注册表黑客更干净地运行单个二进制文件的多个副本。
编辑 :
这是用C#编写的。我的应用程序 Main() 入口点根据命令行参数执行不同的操作:
当前,安装步骤将服务名称和线程数附加到注册表中的 ImagePath ,以便应用程序可以确定其为ServiceName。
来自: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"); }