C# - 杀戮过程无法正常工作

时间:2015-06-17 12:29:16

标签: c# process kill-process

我正在开发WPF应用程序的一些部分。我为它创建了多个用户控件。所以,我的一个用户控件,我用一个网址打开IExplore.exe。关闭该用户控件后,我关闭该过程。在我的系统上似乎工作正常,但客户端使用我的用户控件的机器似乎没有按我想要的方式工作。关闭Iexplore.exe,但是当我查看"任务管理器"我看到太多iexplore.exe。其中一些Iexplore.exe无法关闭,所以使用此名称选项杀死所有进程不是我的选项:)

这是我开课过程的课程。

class ses_process
    {
        static Process p = new Process();
        private Process Proc;

        public static bool start(string url)
        {

            p = Process.Start("IEXPLORE.EXE", "-nomerge "+url);
            //startInfo.WindowStyle = ProcessWindowStyle.Maximized;
            return true;
        }
        public static bool stop()
        {
            p = Process.GetProcessById(p.Id);

            bool return_deger = p.CloseMainWindow();
            return return_deger;
        }
        public Process proc
        {
            get { return Proc; }
            set
            {
                if (Proc == null)
                {
                    Proc = p;
                }
            }
        }

    }

它在任务管理器上看起来像这样;

iexplore.exe                 16524 Console                   10     20.268 K
iexplore.exe                 22572 Console                   10     40.636 K
iexplore.exe                  2356 Console                   10    109.452 K
calc.exe                     20572 Console                   10     11.208 K
wuauclt.exe                  11716 Console                   10      1.092 K
RuntimeBroker.exe             6096 Console                   10      3.180 K
iexplore.exe                 10660 Console                   10     16.536 K
iexplore.exe                 18272 Console                   10     71.972 K
iexplore.exe                 20996 Console                   10     15.004 K
iexplore.exe                 14188 Console                   10      2.080 K
iexplore.exe                 12664 Console                   10     15.120 K
iexplore.exe                  5612 Console                   10     27.660 K
iexplore.exe                 18772 Console                   10     15.572 K
iexplore.exe                 22568 Console                   10     35.944 K
iexplore.exe                 21796 Console                   10     14.852 K
iexplore.exe                 10524 Console                   10     19.100 K
iexplore.exe                 13984 Console                   10     14.808 K
iexplore.exe                 21088 Console                   10     19.664 K
iexplore.exe                 10856 Console                   10     14.008 K
iexplore.exe                  1048 Console                   10     12.652 K
iexplore.exe                 22236 Console                   10     15.428 K
iexplore.exe                 15584 Console                   10     24.204 K
iexplore.exe                 16248 Console                   10      6.116 K
iexplore.exe                  9684 Console                   10      3.064 K
iexplore.exe                   752 Console                   10     14.480 K
iexplore.exe                 12680 Console                   10     19.004 K
iexplore.exe                  5772 Console                   10     14.064 K
iexplore.exe                 17868 Console                   10     18.872 K
iexplore.exe                  9272 Console                   10      5.644 K
iexplore.exe                 14216 Console                   10      3.332 K
iexplore.exe                  6060 Console                   10     11.820 K
iexplore.exe                 21352 Console                   10     12.592 K
iexplore.exe                 19604 Console                   10     15.392 K
iexplore.exe                 16636 Console                   10     23.916 K
iexplore.exe                 12584 Console                   10     14.796 K
iexplore.exe                  2848 Console                   10     21.884 K
iexplore.exe                 13696 Console                   10      5.608 K
iexplore.exe                 11720 Console                   10      3.296 K
SearchProtocolHost.exe       20896 Console                   10      2.404 K

2 个答案:

答案 0 :(得分:2)

你可以试试这个:

Process[] processes = Process.GetProcessesByName("your_process");
foreach (Process process in processes)
{
    process.Kill();
    process.WaitForExit();
}

或者像这样:

Process process = Process.GetProcessById(12345678);
process.Kill();

如果需要,您当然可以添加WaitForExit方法。 Kill方法是异步的,所以如果你想知道进程是否已被杀死你应该等待它,如果不是 - 只需调用Kill方法。有关详细信息,请查看here

编辑: 如果您自己启动了该过程,则应使用以下代码: 基本上Process实现IDisposable接口,您应该通过using语法调用它,例如:

using(Process proc = CreateProcess())
{
    StartProcess(proc);
    if (!proc.WaitForExit(timeout))
    {
        proc.Kill();
    }
}

查看thisthis回答。

再一次,如果你想在处理过程中杀死它 - 只需使用Kill方法。你不必拥有身份证,姓名或其他任何东西。你参考了那个过程,对吗?这足以杀死它

答案 1 :(得分:0)

您是否尝试过使用Process.Kill()?我不确定CloseMainWindow()会做什么。我还建议您对已完成的任何Dispose()个对象调用Process,并从static移除p,好像可能会导致您泄露Process可能产生这种行为的对象。

Dispose()可能会调用kill Kill()(我不确定),但我对此表示怀疑。在实现Dispose()的所有对象上调用IDisposable是一种很好的做法,因为它们使用某种类型的资源或应该释放的其他资源。这就是using() {}块的用途。然而,这就是重点。

我认为从static删除p修饰符并调用Kill()而不是CloseMainWindow()将解决您的问题。