netsh 不提供命令

netsh 不提供命令

根据Windows Server 2008 和 Windows Server 2008 R2 中有线局域网 (LAN) 的 Netsh 命令,netsh 应该提供如下命令

netsh add profile filename="profile.xml" interface="Local Area Connection"

但对于我的 netsh 来说,这是一个未知的命令。

即使我进入

netsh show /? 

它只显示了两个选项:“显示别名”和“显示帮助程序”。可能是缺少了某些库/模块或某些东西?

我在 PowerShell 中使用管理员权限进行了测试。

答案1

您需要处于 netsh 的“lan”上下文中才能访问配置文件命令:


C:\Users\kce>netsh lan add profile /?

Usage:  add profile [filename=]<string>  [interface=]<string>

Parameters:

   filename  - name of the profile XML file
   interface - interface name

Remarks:

   Parameter filename is required.
   It is the name of the XML file containing the profile data.

   Parameter interface is optional. It is one of the interface name shown
   by "netsh lan show interface" command. If interface name is given,
   the profile will be added to the specified interface, otherwise the
   profile will be added on all wired interfaces.

Examples:

   add profile filename="Profile1.xml" interface="Local Area Connection"


C:\Users\kce>

答案2

netsh /?

将显示该命令的所有可用选项。

相关内容