What is the PowerShell script to get the speed a specific Windows machine's network card is running at?
I know this can be done with a WMI query based statement and will post an answer once I work it out.
What is the PowerShell script to get the speed a specific Windows machine's network card is running at?
I know this can be done with a WMI query based statement and will post an answer once I work it out.
A basic command is
Get-WmiObject -ComputerName 'servername' -Class Win32_NetworkAdapter | `
Where-Object { $_.Speed -ne $null -and $_.MACAddress -ne $null } | `
Format-Table -Property SystemName,Name,NetConnectionID,Speed
Note that the ComputerName parameter takes an array so you can run this against multiple computers provided you have rights. Replace the Format-Table property list with * to get a more comprehensive list of available properties. You might want to filter on these properties to get rid of entries you aren't interested in.
Using the built in byte Multiplier suffixes (MB, GB etc) would also make the speed more readable depending on your needs. You could specify this as a HashTable entry on the Format-Table -Property array e.g.
Format-Table -Property NetConnectionID,@{Label='Speed(GB)'; Expression = {$_.Speed/1GB}}
the speed property , does not exists for older servers such as: Windows Server 2003, Windows XP, Windows 2000, and Windows NT 4.0.
does anyone know how to do it in a different way ?