Monday 17 January 2022

get network interface connection speed on windows CLI

cmd/wmi

wmic NIC where NetEnabled=true get Name,Speed

Powershell

 Get-NetAdapter | where Status -eq "Up" | select InterfaceDescription, LinkSpeed

No comments:

Post a Comment