5209520 当前离线
二级士官
andyrave 当前离线
@echo off :Ping Ping -n 5 127.0.0.1>nul ping -n 3 www.hao123.com >nul IF ERRORLEVEL 1 goto Start2 IF ERRORLEVEL 0 goto Start1 :Start1 start "" "路径\程序1.exe" start "" "路径\程序2.exe" exit :Start2 start "" "路径\程序3.exe" exit复制代码
TOP
@echo off :Ping choice /t 5 /d y /n >nul ping -n 3 www.hao123.com >nul IF ERRORLEVEL 1 goto Start2 IF ERRORLEVEL 0 goto Start1 :Start1 start "" "路径\程序1.exe" start "" "路径\程序2.exe" exit :Start2 start "" "路径\程序3.exe" exit复制代码