netsh не предоставляет команды

Согласно командам Netsh для проводной локальной сети (LAN) в Windows Server 2008 и Windows Server 2008 R2, netsh должен предоставлять такие команды, как

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

но это неизвестная команда для моего netsh.

Даже если я вхожу

netsh show /? 

он показывает мне только две опции: "показать псевдоним" и "показать помощник". Может быть, какая-то библиотека / модули или чего-то не хватает?

Я тестировал с правами администратора в PowerShell.

2 ответа

Решение

Вы должны быть в сетевом контексте netsh, чтобы команды профиля были доступны:


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>
netsh /?

покажет вам все доступные опции для команды.

Другие вопросы по тегам