1
我怎樣才能殺死名稱爲「OPCExplorer.exe」的所有進程,除了名稱爲「OPCExplorer.exe」的一個進程,但例如PID =「8888」?我怎樣才能殺死所有具有相同名稱的進程,並保存一個具有相同名稱但使用確切PID的進程?
我怎樣才能殺死名稱爲「OPCExplorer.exe」的所有進程,除了名稱爲「OPCExplorer.exe」的一個進程,但例如PID =「8888」?我怎樣才能殺死所有具有相同名稱的進程,並保存一個具有相同名稱但使用確切PID的進程?
使用tasklist命令的過濾器:
@echo off
for /f "skip=3 tokens=2 delims= " %%a in ('tasklist /fi "imagename eq OPCExplorer.exe" /fi "PID ne 8888"') do (
taskkill /pid %%a /f
)
你可以使用內置的WMIC.exe
WMIC Process Where "Name='OPCExplorer.exe' And Not ProcessId='8888'" Call Terminate