C# 从注册表获取Windows服务的文件路径
C# 从注册表获取Windows服务的文件路径
获取Windows服务的文件名,从注册表获取Windows服务的文件路径。
C# Code:
public static string GetServiceFile(string serviceName)
{
RegistryKey _Key = Registry.LocalMachine.OpenSubKey(@"SYSTEM\ControlSet001\services\" serviceName);
if (_Key != null)
{
object _ObjPath = _Key.GetValue("ImagePath");
if (_ObjPath != null)
{
return _ObjPath.ToString().Replace("\"", "");
}
}
return "";
}
扫一扫加作者微信