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
Under linux, I think ping -b 192.168.1.255 will work (192.168.1.255 is the broadcast address for 192.168.1.*) however IIRC that doesn't work under windows.