Loading |
VBScript |
JavaScript |
Powershell |
Search Options: Display the IP Addresses Associated with a Given MAC AddressContent of Display the IP Addresses Associated with a Given MAC Address.vbsMD5 Hash: 9950A7D155EF23E8FCFE612D8FC1DBBE |
||
On Error Resume Next
strComputer = "." Set objWMIService = GetObject("winmgmts:\\" & strComputer & "\root\cimv2") Set colItems = objWMIService.ExecQuery _ ("Select * from Win32_NetworkAdapterConfiguration Where MACAddress = '99:99:99:AA:99:A9'") For Each objItem in colItems For Each strIPAddress in objItem.IPAddress Wscript.Echo "IP Address: " & strIPAddress Next Next | ||
© 2008 - 2013 Boris Toll :: Scripts available: 6.481 :: :: scriptbox.toll.at :: :: powered by www.toll.at :: |