PSDecode icon indicating copy to clipboard operation
PSDecode copied to clipboard

Missing MAC values for Get-MACVendor

Open u0m3 opened this issue 7 years ago • 0 comments

While playing with the Get-MACVendor command I found it has some missing MAC entries (although one would consider them esoteric)

PS > (Get-NetAdapter).MacAddress | Get-MACVendor

MACAddress        ManufacturerName
----------        ----------------
BC-AE-C5-56-50-60 ASUSTek COMPUTER INC.
00-50-56-C0-00-08 VMware, Inc.
00-50-56-C0-00-01 VMware, Inc.
Get-MACVendor : Couldn't find Manufacturer information for 02-00-4C-4F-4F-50
At line:1 char:31
+ (Get-NetAdapter).MacAddress | Get-MACVendor
+                               ~~~~~~~~~~~~~
    + CategoryInfo          : NotSpecified: (:) [Write-Error], WriteErrorException
    + FullyQualifiedErrorId : Microsoft.PowerShell.Commands.WriteErrorException,Get-MACVendor

Get-MACVendor : Couldn't find Manufacturer information for 00-FF-B9-3B-C6-57
At line:1 char:31
+ (Get-NetAdapter).MacAddress | Get-MACVendor
+                               ~~~~~~~~~~~~~
    + CategoryInfo          : NotSpecified: (:) [Write-Error], WriteErrorException
    + FullyQualifiedErrorId : Microsoft.PowerShell.Commands.WriteErrorException,Get-MACVendor

Get-MACVendor : Couldn't find Manufacturer information for 0A-00-27-00-00-0D
At line:1 char:31
+ (Get-NetAdapter).MacAddress | Get-MACVendor
+                               ~~~~~~~~~~~~~
    + CategoryInfo          : NotSpecified: (:) [Write-Error], WriteErrorException
    + FullyQualifiedErrorId : Microsoft.PowerShell.Commands.WriteErrorException,Get-MACVendor
PS > Get-NetAdapter

Name                      InterfaceDescription                    ifIndex Status       MacAddress             LinkSpeed
----                      --------------------                    ------- ------       ----------             ---------
Ethernet                  Realtek PCIe GBE Family Controller            9 Up           BC-AE-C5-56-50-60         1 Gbps
VMware Network Adapte...8 VMware Virtual Ethernet Adapter for ...      17 Up           00-50-56-C0-00-08       100 Mbps
VMware Network Adapte...1 VMware Virtual Ethernet Adapter for ...      16 Up           00-50-56-C0-00-01       100 Mbps
Npcap Loopback Adapter    Npcap Loopback Adapter                       10 Up           02-00-4C-4F-4F-50       1.2 Gbps
Ethernet 2                TAP-Windows Adapter V9                       12 Disconnected 00-FF-B9-3B-C6-57       100 Mbps
VirtualBox Host-Only N... VirtualBox Host-Only Ethernet Adapter        13 Up           0A-00-27-00-00-0D         1 Gbps

u0m3 avatar Jan 27 '18 01:01 u0m3