不知道楼主能否收到,今天研究了一下,如果理解正确可以满足楼主要求。- @echo off
- :1
- ping www.baidu.com
- rem 检查网络状态
- if %errorlevel%==0 goto start
- rem 检联网则跳转到start
- choice /t 5 /n /d y /m "$延迟5秒$"
- goto :1
- rem 未联网则等待5秒重新检测。choice /t 5 /n...一句中可修改5为其他整数,代表了延迟时间。
-
- :start
- start "" "软件目录1"
- start "" "软件目录2"
- start explorer
- rem 启动部分,自行修改启动软件目录或自行继续添加。
复制代码
|