如何使用Vb.NET或C#终止进程?


69

我有一种情况,我必须检查用户是否已经打开了Microsoft Word。如果他有,那么我必须终止winword.exe进程并继续执行我的代码。

是否有任何简单的代码可以使用vb.net或c#杀死进程?

Answers:


98

您将要使用System.Diagnostics.Process.Kill方法。您可以使用System.Diagnostics.Proccess.GetProcessesByName获得所需的进程 。

示例已经在这里发布,但是我发现non.exe版本的效果更好,所以类似:

foreach ( Process p in System.Diagnostics.Process.GetProcessesByName("winword") )
{
    try
    {
        p.Kill();
        p.WaitForExit(); // possibly with a timeout
    }
    catch ( Win32Exception winException )
    {
        // process was terminating or can't be terminated - deal with it
    }
    catch ( InvalidOperationException invalidException )
    {
        // process has already exited - might be able to let this one go
     }
}

您可能不必处理NotSupportedException,这表明该过程是远程的。


在许多其他情况下(例如,如果进程已使用ACL保护自己),它也将不起作用-实际上,杀死进程是一个可怕的想法,从长远来看只会产生问题。进程应始终关闭而不是终止,以便它们可以正确关闭。这个答案是典型的初学者的错误。
specializt

27

可以完全杀死Word进程(请参阅其他答复),但完全无礼和危险:如果用户在打开的文档中有重要的未保存更改,该怎么办?更不用说会留下的过时的临时文件...

在这方面,这可能是您可以做到的(VB.NET):

    Dim proc = Process.GetProcessesByName("winword")
    For i As Integer = 0 To proc.Count - 1
        proc(i).CloseMainWindow()
    Next i

这将以有序的方式关闭所有打开的Word窗口(如果适用,将提示用户保存其工作)。当然,在这种情况下,用户始终可以单击“取消”,因此您也应该能够处理这种情况(最好通过放置“请关闭所有Word实例,否则我们将无法继续”对话框)... )


我同意这种方法。终止进程应该是最后的选择。可能会有意想不到的后果。
内森

15

这是一个如何杀死所有Word进程的简单示例。

Process[] procs = Process.GetProcessesByName("winword");

foreach (Process proc in procs)
    proc.Kill();

1
一种评论-使用“ winword”而不是“ winword.exe”
Rami

5

您可以通过简单地检查Word进程是否正在运行,并要求用户关闭它,然后单击应用程序中的“继续”按钮来绕过安全问题,并创建一个功能强大的应用程序。这是许多安装程序采用的方法。

private bool isWordRunning() 
{
    return System.Diagnostics.Process.GetProcessesByName("winword").Length > 0;
}

当然,只有在您的应用具有GUI的情况下,您才能执行此操作


5
    public bool FindAndKillProcess(string name)
    {
        //here we're going to get a list of all running processes on
        //the computer
        foreach (Process clsProcess in Process.GetProcesses()) {
            //now we're going to see if any of the running processes
            //match the currently running processes by using the StartsWith Method,
            //this prevents us from incluing the .EXE for the process we're looking for.
            //. Be sure to not
            //add the .exe to the name you provide, i.e: NOTEPAD,
            //not NOTEPAD.EXE or false is always returned even if
            //notepad is running
            if (clsProcess.ProcessName.StartsWith(name))
            {
                //since we found the proccess we now need to use the
                //Kill Method to kill the process. Remember, if you have
                //the process running more than once, say IE open 4
                //times the loop thr way it is now will close all 4,
                //if you want it to just close the first one it finds
                //then add a return; after the Kill
                try 
                {
                    clsProcess.Kill();
                }
                catch
                {
                    return false;
                }
                //process killed, return true
                return true;
            }
        }
        //process not found, return false
        return false;
    }

2

在任务栏应用程序中,我需要清理Excel和Word Interop。因此,这种简单的方法通常会杀死进程。

这使用了通用的异常处理程序,但是可以很容易地拆分为多个异常,如其他答案中所述。如果我的日志记录产生大量误报(即无法杀死已经被杀死的),我可以这样做。但到目前为止,还算这样(工作笑话)。

/// <summary>
/// Kills Processes By Name
/// </summary>
/// <param name="names">List of Process Names</param>
private void killProcesses(List<string> names)
{
    var processes = new List<Process>();
    foreach (var name in names)
        processes.AddRange(Process.GetProcessesByName(name).ToList());
    foreach (Process p in processes)
    {
        try
        {
            p.Kill();
            p.WaitForExit();
        }
        catch (Exception ex)
        {
            // Logging
            RunProcess.insertFeedback("Clean Processes Failed", ex);
        }
    }
}

这就是我当时的称呼:

killProcesses((new List<string>() { "winword", "excel" }));

什么是clean Excel and Word Interops连什么意思?
specializt

就像在清理中一样,如果我不使用此过程,我将有数百个word和excel实例,最终将导致我的机器挂起。
tyler_mitchell

终止活动进程也可能使您的计算机挂起,并且您可能会丢失重要数据,并且可能会完全破坏安装,从而迫使用户进行维修或重新安装。因此,总而言之:干净的算法实际上将在一天中毁灭整个系统。人们应该对过程控制非常小心,特别是在涉及Microsoft过程时,因为这些过程紧密地编织到了OS中,如果处理不当,会引起很多问题。但是如今,微软已经从错误中吸取了教训,并保护了他们免受破坏。
specializt

所以...这次您很幸运。但请从学习你的错误,停止杀害的过程。看一看CloseMainWindow。我只是希望他们有一天会开始弃用这种有害的API,这显然是内核级别的,对于任何用户空间应用程序都不可能实现
specializt

您只需要编写一小段代码,就没有使用它的上下文了……
tyler_mitchell

1

这样的事情会起作用:

foreach ( Process process in Process.GetProcessesByName( "winword" ) )
{
    process.Kill();
    process.WaitForExit();
}

3
当给winword.getProcessesByName一个.exe时,虽然工作正常,但我找不到进程。
布莱尔·康拉德

0

更好地实践,更安全,更礼貌地检测该进程是否正在运行,并告诉用户手动关闭它。当然,您也可以添加超时并在进程消失后取消进程。


-1

我打开了一个Word文件2。现在,我以编程方式通过vb.net运行时打开了另一个Word文件。3.我想单独以编程方式杀死第二个进程。4.不要杀死第一个进程


-2

请看下面的例子

public partial class Form1 : Form
{
    [ThreadStatic()]
    static Microsoft.Office.Interop.Word.Application wordObj = null;

    public Form1()
    {
        InitializeComponent();
    }

    public bool OpenDoc(string documentName)
    {
        bool bSuccss = false;
        System.Threading.Thread newThread;
        int iRetryCount;
        int iWait;
        int pid = 0;
        int iMaxRetry = 3;

        try
        {
            iRetryCount = 1;

        TRY_OPEN_DOCUMENT:
            iWait = 0;
            newThread = new Thread(() => OpenDocument(documentName, pid));
            newThread.Start();

        WAIT_FOR_WORD:
            Thread.Sleep(1000);
            iWait = iWait + 1;

            if (iWait < 60) //1 minute wait
                goto WAIT_FOR_WORD;
            else
            {
                iRetryCount = iRetryCount + 1;
                newThread.Abort();

                //'-----------------------------------------
                //'killing unresponsive word instance
                if ((wordObj != null))
                {
                    try
                    {
                        Process.GetProcessById(pid).Kill();
                        Marshal.ReleaseComObject(wordObj);
                        wordObj = null;
                    }
                    catch (Exception ex)
                    {
                    }
                }

                //'----------------------------------------
                if (iMaxRetry >= iRetryCount)
                    goto TRY_OPEN_DOCUMENT;
                else
                    goto WORD_SUCCESS;
            }
        }
        catch (Exception ex)
        {
            bSuccss = false;
        }
    WORD_SUCCESS:

        return bSuccss;
    }

    private bool OpenDocument(string docName, int pid)
    {
        bool bSuccess = false;
        Microsoft.Office.Interop.Word.Application tWord;
        DateTime sTime;
        DateTime eTime;

        try
        {
            tWord = new Microsoft.Office.Interop.Word.Application();
            sTime = DateTime.Now;
            wordObj = new Microsoft.Office.Interop.Word.Application();
            eTime = DateTime.Now;
            tWord.Quit(false);
            Marshal.ReleaseComObject(tWord);
            tWord = null;
            wordObj.Visible = false;
            pid = GETPID(sTime, eTime);

            //now do stuff
            wordObj.Documents.OpenNoRepairDialog(docName);
            //other code

            if (wordObj != null)
            {
                wordObj.Quit(false);
                Marshal.ReleaseComObject(wordObj);
                wordObj = null;
            }
            bSuccess = true;
        }
        catch
        { }

        return bSuccess;
    }

    private int GETPID(System.DateTime startTime, System.DateTime endTime)
    {
        int pid = 0;

        try
        {
            foreach (Process p in Process.GetProcessesByName("WINWORD"))
            {
                if (string.IsNullOrEmpty(string.Empty + p.MainWindowTitle) & p.HasExited == false && (p.StartTime.Ticks >= startTime.Ticks & p.StartTime.Ticks <= endTime.Ticks))
                {
                    pid = p.Id;
                    break;
                }
            }
        }
        catch
        {
        }
        return pid;
    }
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.