求vbs或bat指定某个"时间段"运行某个程序

最好能指定时间段内循环脚本,超出指定时间段不循环.比如22:30至7:30时间段内运行程序.... 最好能指定时间段内循环脚本,超出指定时间段不循环.比如22:30至7:30时间段内运行程序. 展开
 我来答
453625978
2011-04-18 · TA获得超过3591个赞
知道大有可为答主
回答量:2445
采纳率:0%
帮助的人:3000万
展开全部
@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"
追问
你这个好像不循环.我要是在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之间就会自动退出
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式