This is an old revision of the document!


PING Scripts

PING-Addresses.bat
@echo off
:start
cls
 
FOR /F %%i IN (IPaddresses.conf) DO (
ping %%i -n 1 -w 2000 | find "TTL" || echo %%i is DOWN
)
 
pause
goto start
IPaddresses.conf
192.168.1.1
192.168.1.2
192.168.1.3
192.168.1.4
  • tech-notes/scripts/ping.1558525632.txt.gz
  • Last modified: 2019/05/22 12:47
  • by gerardorourke