我将如何终止进程/应用程序?

发布于 2024-11-06 06:20:09 字数 179 浏览 0 评论 0原文

我希望能够使用 python 终止运行中的各种程序。我该怎么办呢?

像这样的事情:

module.end_process('chrome.exe') 

这一点代码会关闭 Google Chrome。

顺便说一句,这是在 Windows 7 中。

I'd like to be able to kill various programs mid-run using python. How would I go about this?

Something like this:

module.end_process('chrome.exe') 

This little bit of code would shut down Google Chrome.

This is in Windows 7, BTW.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

青朷 2024-11-13 06:20:09

http://docs.python.org/library/os.html#os.kill

os.kill()

虽然,你必须有 PID 才能使用 os.kill() - 我不知道如何从 Windows 的 proc 名称中找到 PID。

http://docs.python.org/library/os.html#os.kill

os.kill()

Although, you have to have the PID to use os.kill()- I'm not sure how to find a PID from a proc name with windows.

傻比既视感 2024-11-13 06:20:09

您需要使用 Python Win32 扩展 来处理来自 Python 的 Win32 进程。您可以使用此邮件 线程 中介绍的方法找出要杀死的可执行文件(进程)的句柄。然后,您可以将获得的句柄传递给方法 win32Process.TerminateProcess 来终止应用程序。

You need to use Python Win32 Extensions to handle Win32 processes from Python. You can use the approach explained in this mail thread to find out handle of the executable (process) which you want to kill. You can then pass the obtained handle to method win32Process.TerminateProcess to kill the application.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文