求一windows bat脚本,自动打开一个程序,过X秒后再关闭这个程序。 5
3个回答
展开全部
@echo off
start 具体路径\a.exe
choice /c 12 /d 1 /t 10>nul
taskkill /f /im a.exe
exit
上面的/t 后面的数字代表暂停的时间
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
test.exe
timeout /t x /nobreak>nul
taskkill /f /im test.exe
追问
你的脚本最后不会关闭程序 单独运行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)
@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)
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询