Instead of manually pinging all IP addresses on your LAN you can use this nice command:
Introducing OpManager, an enterprise-ready network & datacenter infrastructure monitoring software. Trusted by over a million IT admins worldwide, OpManager monitors Routers, Switches, Firewalls, Physical/Virtual Servers, LAN/WAN traffic, Configuration changes, Apps such as Oracle, SAP, Websphere, etc & other IT devices from a single console. It is easy-to-deploy & use. Try it for Free
Download FREE 30-Day Trial of ManageEngine OpManagerOpen Command Prompt and type:
FOR /L %i IN (1,1,254) DO ping -n 1 192.168.0.%i | FIND /i "Reply">> c:\ipaddresses.txt
The "-n 1" is for only 1 ping packet to be sent to each computer.
Change 192.168.0 to match you own Network ID.
This will ping all IP addresses on the 192.168.0.0 network segment and create a text file called IPADDRESSES.TXT in C:\, where it will list only the IP addresses that gave a reply.
FOR /L %i IN (1,1,254) DO ping -a -n 1 192.168.0.%i | FIND /i "Reply">> c:\ipaddresses.txt
You can, of course, modify this script and make it suit your own desire.



