基本命令是
原文链接:https://www.f2er.com/windows/363285.htmlGet-WmiObject -ComputerName 'servername' -Class Win32_NetworkAdapter | ` Where-Object { $_.Speed -ne $null -and $_.MACAddress -ne $null } | ` Format-Table -Property SystemName,Name,NetConnectionID,Speed
请注意,ComputerName参数采用数组,因此您可以针对多台计算机运行此操作,前提是您拥有权限.用*****替换Format-Table属性列表以获得更全面的可用属性列表.您可能希望过滤这些属性以删除您不感兴趣的条目.
使用内置字节乘数后缀(MB,GB等)也可以根据您的需要使速度更具可读性.您可以在Format-Table -Property数组中将其指定为HashTable条目,例如
Format-Table -Property NetConnectionID,@{Label='Speed(GB)'; Expression = {$_.Speed/1GB}}