3

In preparing to move to a domain and SCCM to manage machines in a new office I need to gather their MAC addresses. I could go from machine to machine, run ipconfig and gather the ip, but that would be time consuming. I can also look at a list of machines through the Network window, then work down the list pinging them, then looking up the ip in arp, still time consuming, but I wouldn't have to leave my office. Is there a better way? Possibly a series of command line tools? The current domain is managed by Win server 2000 so I have limited domain tools, and I am working with a win8 desktop.

Tvanover
  • 257
  • 1
  • 3
  • 12
  • There are a number of free tools that can do a ping sweep of your network, which will give you a list of computer names, ip addresses and the corresponding MAC addresses. – joeqwerty Jul 22 '13 at 21:32

1 Answers1

3

On Windows, you can use a couple nifty tricks already available. This only works if the machines will respond to a broadcasted ping:

ping 192.168.x.255 (where the ip is appropriate to your network) Then: arp -a to list the routing table. It'll contain any IP address that responded. Again, it's not fool-proof but it does return a majority of Windows machines in particular.

Nathan C
  • 14,901
  • 4
  • 42
  • 62