gpt4 book ai didi

python - Win7以上使用Python关闭Chrome浏览器

转载 作者:太空宇宙 更新时间:2023-11-03 19:57:53 25 4
gpt4 key购买 nike

The specific task to close好吧,我花了一些时间研究如何做到这一点,我得到的最接近的是:

os.system("powershell.exe Get-Process chrome | Stop-Process")

但后来我得到了这个错误:

如果我从 CMD 运行此命令,它就会起作用,并且 chrome 窗口将关闭,其中包含所有选项卡。

'Stop-Process' is not recognized as an internal or external command, operable program or batch file.

我尝试过使用'''os.system(taskkill/IM/F chrome.exe)'''(及其所有选项)

什么都没有。我得到的最好的就是“Oh, Snap”页面。 (主要的 chrome 进程没有关闭)。

谢谢!

最佳答案

你应该这样做:

os.system("powershell.exe -command Stop-Process -Name 'chrome'")
os.system("taskkill /im chrome.exe /f")

关于python - Win7以上使用Python关闭Chrome浏览器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59446075/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com