C#中级-通过注册表读取Windows Service程序执行路径_.NET_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > .NET > C#中级-通过注册表读取Windows Service程序执行路径

C#中级-通过注册表读取Windows Service程序执行路径

 2017/11/26 20:58:34  airforce094  程序员俱乐部  我要评论(0)
  • 摘要:一、前言假设我们的C#解决方案中有多个程序应用,如:Web应用、控制台程序、WPF程序应用和Windows服务应用。那么这些非WindowsService应用程序怎么在代码中找到Windows服务应用的执行路径呢?二、正文假设该Windows服务已经启动,名称叫SocketService。Step1:你要检查本地运行的Windows服务中是否有叫SocketService的服务;Step2:读取注册表,在本地运行的Windows服务都会出现在注册表中,我们通过服务名称找到该注册表信息
  • 标签:程序 Windows C# Service 执行 注册表

一、前言

       假设我们的C#解决方案中有多个程序应用,如:Web应用、控制台程序、WPF程序应用和Windows服务应用。

        那么这些非Windows Service应用程序怎么在代码中找到Windows服务应用的执行路径呢?

 

二、正文

       假设该Windows 服务已经启动,名称叫SocketService。

        Step1: 你要检查本地运行的Windows服务中是否有叫SocketService的服务;

        Step2: 读取注册表,在本地运行的Windows服务都会出现在注册表中,我们通过服务名称找到该注册表信息;

        Step3: 读取注册表信息的ImagePath即可得到该Windows服务的执行路径。

using System.ServiceProcess; //需要添加引用

public
static string GetFilePathFromService(string serviceName) { try { ServiceController[] services = ServiceController.GetServices(); var socketService = services.FirstOrDefault(x => String.Equals(x.ServiceName, "SocketService")); if (socketService != null) { var key = Registry.LocalMachine.OpenSubKey(@"SYSTEM\CurrentControlSet\Services\" + serviceName); if (key != null) { var serviceExePath = GetString(key.GetValue("ImagePath").ToString()); var folderPath = Path.GetDirectoryName(serviceExePath); if (!String.IsNullOrEmpty(folderPath) && Directory.Exists(folderPath)) { return folderPath; } } } } catch(Exception ex) { return null; } return null; }

 

三、结尾

       最近有点忙,Webgl后面三章估计要拖更了。。。尴尬

上一篇: Jersey RESTful WebService框架学习(七)文件上传 下一篇: 没有下一篇了!
发表评论
用户名: 匿名