使用c#从服务名称获取进程ID

时间:2013-12-20 07:08:55

标签: c# windows-services

是否有可能在不使用c#中的管理对象的情况下从服务名称获取进程ID?当WMI服务处于错误状态时,管理对象不起作用。

2 个答案:

答案 0 :(得分:0)

希望这会对你有帮助。

SELECT ProcessId FROM Win32_Service WHERE Name='MyServiceName'

答案 1 :(得分:0)

试试这个:

Process p = new Process();
p.StartInfo.FileName = "sc.exe";
p.StartInfo.Arguments = "queryex \"" + srv_name + "\"";
p.StartInfo.UseShellExecute = false;
p.StartInfo.RedirectStandardOutput = true;
p.StartInfo.WindowStyle = ProcessWindowStyle.Hidden;
p.Start();
p.WaitForExit();
string output = p.StandardOutput.ReadToEnd();
p.Close();
if (output.IndexOf("SERVICE_NAME") != -1)
{
    bool getPid = false;
    string[] words = output.Split(':');
    foreach (string word in words)
    {
        if (word.IndexOf("PID") != -1 && getPid == false)
        {
            getPid = true;
        }
        else if (getPid == true)
        {
            string[] pid = word.Split('\r');
            return Convert.ToInt32(pid[0]);
        }
    }
}