Is there a command line based way to send pings to each computer in a subnet? Like
for(int i = 1; i < 254; i++) ping(192.168.1.i);
t
FOR /L %i in (1,1,254) DO PING 192.168.1.%i -n 1 -w 100 | for /f "tokens=3 delims=: " %j in ('find /i "TTL="') do echo %j>>IPsOnline.txt