- 帖子
- 4
- 积分
- 16
- 技术
- 0
- 捐助
- 0
- 注册时间
- 2014-11-29
|
2楼
发表于 2014-11-29 11:37
| 只看该作者
已解决
@echo off
if not "%~1"=="p" start /min cmd.exe /c %0 p&exit ==最小化窗口运行==
: begin
ping /n 2 192.168.1.8|findstr /i "ttl=">nul&&goto :SEP||goto :NOSEP
tracert 192.168.1.8|findstr "无法访问目标主机">nul&&goto :start||goto :ipv2
:SEP
start "" "C:\p.bat"==网络通时执行的程序==
echo 开启分离,检测中,勿关此窗口.....
ping /n 60 127.0.0.1>nul ==延时60秒继续检测==
goto begin
:NOSEP
start "" "C:\s.bat"==网络不通时执行的程序==
echo 关闭分离,检测中,勿关此窗口....
ping /n 60 127.0.0.1>nul ==延时60秒继续检测==
goto begin |
|