PS脚本获取网络适配器状态

1.

Get-WmiObject -Class Win32_NetworkAdapterConfiguration `
-filter "IPEnabled = $true"
2.
Get-WmiObject -Class Win32_NetworkAdapter | 
Format-Table -Property Name, NetConnectionStatus -AutoSize
image
3.netsh interface show interface
Use netsh interface  show interface  to show interface name in dos / powershell
原文地址:https://www.cnblogs.com/jjkv3/p/3862393.html