Taskkill 一个无标题的进程?
所以我正在使用 Vista 附带的 taskkill.exe,我希望它做一些特别复杂的事情。
有多个 java.exe 实例正在运行,我希望它找到未命名的实例。所以这是我的命令:
taskkill /IM java.exe /FI "WINDOWTITLE eq "
我也尝试过:
taskkill /IM java.exe /FI "WINDOWTITLE ne AutoClicker"
无论如何它都不起作用...那么有没有...针对一个无标题的进程???
So I'm using the taskkill.exe which comes with Vista and I want it to do something especially complicated..
There are multiple instances of java.exe running, and I want it to find the one that is untitled.. so this is my command:
taskkill /IM java.exe /FI "WINDOWTITLE eq "
I also tried:
taskkill /IM java.exe /FI "WINDOWTITLE ne AutoClicker"
It doesn't work anyways... So is there anyway... to target an untitled process???
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您必须首先通过解析 TASKLIST 的结果找到无标题进程的 PID,然后使用找到的 PID 调用 TASKKILL。
尝试以下代码
,经过额外仔细的测试后,删除 ECHO
You must first find the PID of the untitled process by parsing the results of TASKLIST, and then invoke TASKKILL with the found PID.
Try the following code
and after extra-careful testing, remove the ECHO