netsh não fornece comandos

1

De acordo com Comandos netsh para rede local com fio (LAN) no Windows Server 2008 e Windows Server 2008 R2 , o netsh deve fornecer comandos como

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

mas esse é um comando desconhecido para minha netsh.

Mesmo se eu entrar

netsh show /? 

ele mostra apenas duas opções: 'show alias' e 'show helper'. Talvez alguma biblioteca / módulos ou algo esteja faltando?

Eu testei com permissões de administrador no PowerShell.

    
por Petr Marek 31.08.2012 / 00:02

2 respostas

1

Você precisa estar no contexto 'lan' do netsh para que os comandos do perfil sejam acessíveis:


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>
    
por 31.08.2012 / 00:35
0
netsh /?

mostrará todas as opções disponíveis para o comando.

    
por 31.08.2012 / 00:15