求批处理一直ping 192.168.1.1 通后运行c:\1.exe不通一直ping
4个回答
展开全部
批处理如下:
@echo off
:start
ping 192.168.1.1 -n 1|findstr TTL&&goto :end
goto :start
:end
start c:\1.exe
cls
echo ping 192.168.1.1 成功,正在运行c:\1.exe...
pause
@echo off
:start
ping 192.168.1.1 -n 1|findstr TTL&&goto :end
goto :start
:end
start c:\1.exe
cls
echo ping 192.168.1.1 成功,正在运行c:\1.exe...
pause
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
@echo off
:begin
ping 192.168.1.1|findstr TTL&&c:\1.exe&exit
goto begin
:begin
ping 192.168.1.1|findstr TTL&&c:\1.exe&exit
goto begin
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
@echo off
:rp
ping 192.168.1.1&&c:\1.exe&exit
ping 192.168.1.1||goto rp
:rp
ping 192.168.1.1&&c:\1.exe&exit
ping 192.168.1.1||goto rp
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
:q
Ping /n 1 192.168.1.1&&(
C:\1.exe
Exit)
Goto q
Ping /n 1 192.168.1.1&&(
C:\1.exe
Exit)
Goto q
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询