此程序可用于定时关闭指定程序,
以下程序实现限时运行CS 10分钟,10分钟后自动关闭.
start F:\Games\cs\cstrike.exe
set shi=%time:~0,2%
set fen=%time:~3,2%
set /a a="shi"*60+fen+10
:st
set hour=%time:~0,2%
set min=%time:~3,2%
set /a b="hour"*60+min
if %b%==%a% taskkill /f /im cstrike.exe
ping -n 50 127.0.0.1 >nul
goto st
运行方法:把程序保存在记事本,保存后缀为.bat,保存后运行即可.
本程序可运用于限时运行某程序,譬如作为限时游戏的工具.
根据实际情况把第一行的程序路径改变.
文章评论(0条评论)
登录后参与讨论