我将如何终止进程/应用程序?
我希望能够使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
http://docs.python.org/library/os.html#os.kill
虽然,你必须有 PID 才能使用 os.kill() - 我不知道如何从 Windows 的 proc 名称中找到 PID。
http://docs.python.org/library/os.html#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.
您需要使用 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.