xlybzk 当前离线
列兵
@echo off set b=0 :1 (ping 192.168.1.1 -n 1)|(findstr /i "out") if %ERRORLEVEL%==0 (set /a b=b+1)&echo 第%b%次丢包%time%>>out.txt goto :1复制代码
ArdentMan 当前离线
中尉
@Echo Off&SetLocal EnableDelayedExpansion :Loop Ping /n 1 /w 100 192.168.1.1>nul If ErrorLevel 1 (Set /A Num+=1&Echo 第!Num!次丢包 !time!>>out.txt) Goto Loop复制代码
TOP