我正在尝试杀死计算机上的Chrome。我以管理员身份运行命令提示符并运行:
C:\WINDOWS\system32>tasklist /FI "IMAGENAME eq chrome.exe"
这返回了一项:
Image Name PID Session Name Session# Mem Usage
========================= ======== ================ =========== ============
chrome.exe 8336 Console 2 420,324 K
但是,我无法使用/ IM杀死它:
C:\WINDOWS\system32>taskkill /IM "chrome.exe" /F
因为它返回了:
ERROR: The process "chrome.exe" with PID 8336 could not be terminated.
Reason: There is no running instance of the task.
所以我试图用/ PID杀死它:
C:\WINDOWS\system32>taskkill /PID 8336 /F
返回类似的内容:
ERROR: The process with PID 8336 could not be terminated.
Reason: There is no running instance of the task.
试图通过任务管理器杀死它也不起作用。如何在不重新启动计算机的情况下杀死Chrome?
相关性为什么Windows有时不能终止进程?
—
DavidPostill
AFAIK chrome始终具有多个进程,重新启动PC后此问题是否仍然存在?您可以尝试
—
LotPings
powershell.exe "Get-Process chrome | Stop-Process"
@LotPings我可以使用任务管理器杀死所有其他chrome进程,但是这个进程一直存在。
—
乔恩(Jon)
尝试:
—
Pimp Juice IT
wmic process where name="chrome.exe" call terminate
在管理员身份提升的命令提示符下,然后报告结果。
我
—
Coderer
chrome
用VS Code启动后挂起的进程尝试了此操作-即使关闭Code之后,该进程也不会消失。当我调用终止时,它将返回{ ReturnValue = 2; };
并且该过程将不间断地继续进行。