答案 0 :(得分:1)
我想这就是你要找的 -
Get-NetAdapterBinding | ? {$_.DisplayName -eq 'File and Printer Sharing for Microsoft Networks' -and $_.Name -eq 'ethernet'}
Name DisplayName ComponentID Enabled
---- ----------- ----------- -------
Ethernet File and Printer Sharing for Microsoft Networks ms_server True
答案 1 :(得分:0)
如果您使用的是Windows 10,则可以使用Get-NetAdapter
列出适配器。一旦你得到了正确的" toto"你可以使用:
Get-NetAdapter "toto" | Set-NetAdapterBinding –ComponentID ms_server –Enabled $False