Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想要一个可以杀死所有 chrome.exe 进程的批处理文件。我遇到了这个示例:taskkill /im chrome.exe
它只杀死它找到的 chrome.exe 的第一个进程。我怎样才能循环它?
你可以使用这个:
taskkill /F /IM <processname.exe> /T taskkill /F /IM Chrome.exe /T