我正在运行命令以获得活动的网络连接,并且我以下面的格式获得输出。
PS C:\> wmic nic where "netconnectionid like '%'" get netconnectionid
NetConnectionID
Local Area Connection
PS C:\>
但我希望输出只作为局域连接,任何人都可以帮我修剪它吗?
答案 0 :(得分:1)
您始终可以使用Select-String来获取特定字符串,如:
wmic nic where "netconnectionid like '%'" get netconnectionid | Select-String "Local Area Connection"