Skip to content

Instantly share code, notes, and snippets.

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