@echo off
rem 开机10分钟后执行%windir%\*.bat ,xp下测试,时间24小时制
set h=%time:~0,2%
set /a m=%time:~3,2%+20
if %m% GEQ 60 (set /a m=m-60 & set /a h=h+01)
if %m% lss 10 (set /a m=m+10)
if %h% EQU 24 (set a=00)
set xtime=%h%%time:~2,1%%m%
at.exe %xtime% /interactive %windir%\*.bat
[ Last edited by he200377 on 2006-8-29 at 20:17 ]
rem 开机10分钟后执行%windir%\*.bat ,xp下测试,时间24小时制
set h=%time:~0,2%
set /a m=%time:~3,2%+20
if %m% GEQ 60 (set /a m=m-60 & set /a h=h+01)
if %m% lss 10 (set /a m=m+10)
if %h% EQU 24 (set a=00)
set xtime=%h%%time:~2,1%%m%
at.exe %xtime% /interactive %windir%\*.bat
[ Last edited by he200377 on 2006-8-29 at 20:17 ]
