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