如何在 Windows 7 Enterprise 中通过命令行打开特定网络适配器的设置?
我是域用户,但也可以访问本地管理员用户。
在域用户下,我没有权限执行此操作(打开此设置选项卡),并且想像 RUNAS 一样执行此操作以避免二次登录。
我试过了
ncpa.cpl
但这会打开适配器列表,而我想打开特定适配器的设置
答案1
PowerShell 是你的朋友。
- 开始 -> 输入“Powershell” -> 右键单击 -> 以管理员身份运行
- 设置执行策略不受限制-force
- 运行以下命令。这里的最后一行是管道到 gm (Get-Member),这显示了您可以在此处执行的一些操作。
PS C:\WINDOWS\system32> Get-NetAdapter | ?{$_.Name -like 'Ethernet'} | ft -a
Name InterfaceDescription ifIndex Status MacAddress LinkSpeed
---- -------------------- ------- ------ ---------- ---------
Ethernet Realtek PCIe GBE Family Controller 15 Up D8-CB-8A-66-87-BC 1 Gbps
PS C:\WINDOWS\system32> Get-NetAdapter -InterfaceIndex 15 | ft -a
Name InterfaceDescription ifIndex Status MacAddress LinkSpeed
---- -------------------- ------- ------ ---------- ---------
Ethernet Realtek PCIe GBE Family Controller 15 Up D8-CB-8A-66-87-BC 1 Gbps
PS C:\WINDOWS\system32> $na = Get-NetAdapter -InterfaceIndex 15
PS C:\WINDOWS\system32> $na | gm