Bat file to list all mac addresses on 1 machine

  • Thread starter Thread starter nawo69
  • Start date Start date
N

nawo69

Does any one know how to create a bat file to list all the Mac
addresses of one machines, ie the network card and wireless card mac
address.

I have found a few bat files but they only get one address not all of
them.

Cheers

Andy
 
Nevermind; I have found the answer :-

@Echo Off
Rem Write MAC Addresses to macs.log and find Physical Adresses

ipconfig /all > macs.log
find "Physical" macs.log
 
Back
Top