how to get ip address of systems connected to a network?
How can I get the IP address and Name of the Systems connected to same network that can be a wifi network or LAN ? Also Is there any way of retrieving the IP address of systems connected to a same network from command prompt using their name ?
July 2nd, 2012 1:00pm

Developer3092 wrote: How can I get the IP address and Name of the Systems connected to same network that can be a wifi network or LAN ? Also Is there any way of retrieving the IP address of systems connected to a same network from command prompt using their name ? That depends on the name resolution you use. For DNS the tool is "nslookup" and for netbios the tool is "nbtstat". Wolfgang
Free Windows Admin Tool Kit Click here and download it now
July 3rd, 2012 11:25am

Assuming all of your computers are on the same subnet, you could create a simple batch file that iterates through your network. Lets say you want to find all hosts from 50 to 100, you could use similar to below. for /L %%n in (50,1,100) do ( ping 12.123.45.%%n -n 1 -a )
July 3rd, 2012 12:28pm

Assuming all of your computers are on the same subnet, you could create a simple batch file that iterates through your network. Lets say you want to find all hosts from 50 to 100, you could use similar to below. for /L %%n in (50,1,100) do ( ping 12.123.45.%%n -n 1 -a )
Free Windows Admin Tool Kit Click here and download it now
July 3rd, 2012 12:28pm

You can also try a network scanning tool. Here is a free one that works really well. http://www.radmin.com/products/ipscanner/ Robert Mann MCSE, MCSA, HP ASE
July 3rd, 2012 7:22pm

You can also try a network scanning tool. Here is a free one that works really well. http://www.radmin.com/products/ipscanner/ Robert Mann MCSE, MCSA, HP ASE
Free Windows Admin Tool Kit Click here and download it now
July 3rd, 2012 7:22pm

This topic is archived. No further replies will be accepted.

Other recent topics Other recent topics