使用计划任务就可以了,比如你是希望开机后,还是登录后执行某个软件,或者延迟多久执行。
都可以透过触发器来进行。
简单的~~
@echo off
set now=%time:~3,2%
set hour=%time:~0,2%
set /a then=%now%+10
if %then% gtr 60 set then=%then%-60 & set /a hour+=1
at %hour%:%then%:%time:~6,2% start "" "d:\腾讯软件\qq2013\bin\QQ.exe"
第4行中的%now%+10,10代表10分钟。最好不要超过60