求vbs或bat指定某个"时间段"运行某个程序
1个回答
展开全部
@echo off
rem 该批处理放在启动中即可
if %time:~0,5% geq 22:30 if %time:~0,5% leq 23:59 start "" "c:\hello.exe"
rem 22:30-23:59之间启动"c:\hello.exe"
if %time:~0,5% geq 0:00 if %time:~0,5% leq 7:30 start "" "c:\hello.exe"
rem 0:00-7:30之间启动"c:\hello.exe"
rem 该批处理放在启动中即可
if %time:~0,5% geq 22:30 if %time:~0,5% leq 23:59 start "" "c:\hello.exe"
rem 22:30-23:59之间启动"c:\hello.exe"
if %time:~0,5% geq 0:00 if %time:~0,5% leq 7:30 start "" "c:\hello.exe"
rem 0:00-7:30之间启动"c:\hello.exe"
追问
你这个好像不循环.我要是在22:29前运行的机子,网吧的机器只要不重启..就不会执行脚本了.~我要的是22:30到7:30分之间脚本才运行.有无办法?
追答
@echo off
rem 该批处理放在启动中即可
if %time:~0,5% geq 22:30 if %time:~0,5% leq 23:59 goto :hello
rem 22:30-23:59之间启动"c:\hello.exe"
if %time:~0,5% geq 0:00 if %time:~0,5% leq 7:30 goto :hello
rem 0:00-7:30之间启动"c:\hello.exe"
exit
:hello
start "" "c:\hello.exe"
goto hello
rem 实现无限循环了,如果不在22:30-7:30之间就会自动退出
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询