9 lines
283 B
Text
9 lines
283 B
Text
$apiRoot = "http://api.macvendors.com"
|
|
$macAddresses = @("88:53:2E:67:07:BE", "D4:F4:6F:C9:EF:8D",
|
|
"FC:FB:FB:01:FA:21", "4c:72:b9:56:fe:bc",
|
|
"00-14-22-01-23-45")
|
|
|
|
$macAddresses | % {
|
|
(Invoke-WebRequest "$apiRoot/$_").Content
|
|
Start-Sleep 1.5
|
|
}
|