cndw 当前离线
列兵
BAT-VBS 当前离线
少将
ping -n 1 127.0.0.1 | findstr /c:"Reques time out" /c:"Destination host unreachable"复制代码
TOP
@echo off >Success.txt type nul >Fail.txt type nul for /f %%a in (ip.txt) do ( ping %%a && echo>>Success.txt %%a || echo>>Fail.txt %%a )复制代码
ccdevil 当前离线
@echo off setlocal enabledelayedexpansion (for /f %%a in (1.txt) do ( ping /n 1 /w 500 %%a|findstr /i "Reply">nul if !errorlevel! equ 0 (echo %%a通) else (echo %%a不通) ) )>log.txt复制代码