1 2 3 4 5 6 7 8 9 10 |
$macwifi=netsh wlan show networks mode=bssid | Select-String '([0-9A-F]{2}[:]){5}([0-9A-F]{2})$' | % {$_.matches} | Select-Object value foreach($mac in $macwifi.value) { $url="https://standards.ieee.org/cgi-bin/ouisearch?"+$mac.Substring(0,8).replace(':','-') $url $result=Invoke-WebRequest $url #Here are the results of your search through the public section of the IEEE Standards MA-L database report for MAC ($result.AllElements | Where tagName -eq "PRE").outerText } |