如何使用Vb.NET或C#杀死进程?

前端之家收集整理的这篇文章主要介绍了如何使用Vb.NET或C#杀死进程?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个场景,我必须检查用户是否已经打开Microsoft Word。如果他有,那么我必须杀死winword.exe进程并继续执行我的代码

有没有任何直接的代码来杀死进程使用vb.net或c#?

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

示例已经在这里发布,但我发现非.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,这表明该进程是远程的。

原文链接:https://www.f2er.com/vb/256553.html

猜你在找的VB相关文章