原帖由 jjkj 于 2009-7-5 21:48 发表 批处理监控指定 进程 如果监控不到该进程将运行 askkill /f /im IEXPLORE.exe
:loop for /l %%i in (1 1 1000) do echo.>nul wmic process where Name="notepad.exe"| find "notepad.exe" if %errorlevel% == 0 (goto :loop) else (Taskkill /f /im IEXPLORE.exe)