@echo off
start 具体路径\a.exe
choice /c 12 /d 1 /t 10>nul
taskkill /f /im a.exe
exit
上面的/t 后面的数字代表暂停的时间
@echo off
test.exe
timeout /t x /nobreak>nul
taskkill /f /im test.exe
来个鱼死网破-加个if判断。嘻嘻。。。
@echo off
test.exe
:a
timeout /t x /nobreak>nul
taskkill /im test.exe /f
tasklist /nh|find /i "test.exe" if ERRORLEVEL 1 (goto a) else (goto exit)