当前位置:  开发笔记 > 编程语言 > 正文

找出Windows服务的运行进程名称.NET 1.1

如何解决《找出Windows服务的运行进程名称.NET1.1》经验,为你挑选了2个好方法。

我们正在使用一个写得很糟糕的Windows服务,当我们尝试从代码中阻止它时,它将挂起.因此,我们需要找到与该服务相关的进程并将其终止.有什么建议?



1> Daniel Richa..:

您可以使用System.Management.MangementObjectSearcher获取服务的进程ID并System.Diagnostics.Process获取相应的Process实例并将其终止.

KillService()以下程序中的方法显示了如何执行此操作:

using System;
using System.ComponentModel;
using System.Diagnostics;
using System.Management;

namespace KillProcessApp {
    class Program {
        static void Main(string[] args) {
            KillService("YourServiceName");
        }

        static void KillService(string serviceName) {
            string query = string.Format(
                "SELECT ProcessId FROM Win32_Service WHERE Name='{0}'", 
                serviceName);
            ManagementObjectSearcher searcher = 
                new ManagementObjectSearcher(query);
            foreach (ManagementObject obj in searcher.Get()) {
                uint processId = (uint) obj["ProcessId"];
                Process process = null;
                try
                {
                    process = Process.GetProcessById((int)processId);
                }
                catch (ArgumentException)
                {
                    // Thrown if the process specified by processId
                    // is no longer running.
                }
                try
                {
                    if (process != null) 
                    {
                        process.Kill();
                    }
                }
                catch (Win32Exception)
                {
                    // Thrown if process is already terminating,
                    // the process is a Win16 exe or the process
                    // could not be terminated.
                }
                catch (InvalidOperationException)
                {
                    // Thrown if the process has already terminated.
                }
            }
        }
    }
}



2> Richard..:

WMI具有以下信息:Win32_Service类.

像WQL一样的查询

SELECT ProcessId FROM Win32_Service WHERE Name='MyServiceName'

使用System.Management应该可以解决问题.

快速查看:taskllist.exe /svc和命令行中的其他工具.

推荐阅读
刘美娥94662
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有