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