Windows 循环根据进程名称 存在则删除该进程

@echo off
:Loop
tasklist | findstr /i "javaw.exe" >nul 2>nul && (
taskkill -f /im javaw.exe
exit
)
goto Loop
exit %ERRORLEVEL%

posted @ 2019-04-26 10:27  巴黎爱工作  阅读(532)  评论(0编辑  收藏  举报