1

我希望有人帮助我禁用 TCP/IP 上的 NetBIOS 并使用 PowerShell 获取 NIC 的位置 ID,

4

1 回答 1

2

第一件事:这是一种通过 TCP/IP 禁用 Netbios 的方法

# My network card name
$networkCardName = "Connexion au réseau local"
$adapter=(gwmi -query "select * from win32_networkadapter where netconnectionid= 'Connexion au réseau local'").deviceid
([wmi]"\\.\root\cimv2:Win32_NetworkAdapterConfiguration.Index=$adapter").SetTcpipNetbios(2)

为 ' ' 提供不同的值SetTcpipNetbios

0 (0x0) 通过 DHCP 启用 Netbios

1 (0x1) 启用 Netbios

2 (0x2) 禁用 Netbios

第二件事:网卡的位置 ID 是什么意思?

于 2011-06-28T07:20:00.047 回答