Skip to content

Instantly share code, notes, and snippets.

@WilliamBerryiii
Last active January 7, 2016 21:59
Show Gist options
  • Save WilliamBerryiii/f8e1ad9ef6fa15e42676 to your computer and use it in GitHub Desktop.
Save WilliamBerryiii/f8e1ad9ef6fa15e42676 to your computer and use it in GitHub Desktop.
Modified StackOverflow Powershell Get NIC Speed
Get-WmiObject -ComputerName localhost -Class Win32_NetworkAdapter |
Where-Object { $_.Speed -ne $null -and $_.MACAddress -ne $null } |
Select-Object -Property SystemName,Name,NetConnectionID,Speed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment