Host Discovery
nmap -sn <network_subnet>for /L %i in (1,1,255) do @ping -n 1 -w 200 <network_subnet>.%i > nul && echo <network_subnet>.%i is up.for i in {1..254}; do ping -c 1 <network_subnet>.$i | grep "bytes from" & done; waitLast updated
nmap -sn <network_subnet>for /L %i in (1,1,255) do @ping -n 1 -w 200 <network_subnet>.%i > nul && echo <network_subnet>.%i is up.for i in {1..254}; do ping -c 1 <network_subnet>.$i | grep "bytes from" & done; waitLast updated