В соответствии с Команды Netsh для проводной локальной сети (LAN) в Windows Server 2008 и Windows Server 2008 R2, netsh должен предоставлять такие команды, как
netsh add profile filename="profile.xml" interface="Local Area Connection"
но это неизвестная команда для моего netsh.
Даже если я войду
netsh show /?
он показывает мне только два варианта: «показать псевдоним» и «показать помощника». Может быть, какая-то библиотека / модули или чего-то не хватает?
Я тестировал с правами администратора в PowerShell.
Вы должны находиться в контексте 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>
netsh /?
покажет вам все доступные параметры для команды.