Windows使用命令行检查网卡速度

1、使用命令提示符检查网卡速度

键盘 win + R ,输入cmd

wmic nic where netEnabled=true get name, speed

Windows使用命令行检查网卡速度_第1张图片

2、使用PowerShell检查网卡速度

 Get-NetAdapter | select interfaceDescription, name, status, linkSpeed

Windows使用命令行检查网卡速度_第2张图片

你可能感兴趣的:(windows,linux,运维)