Configurar NetBios sobre TCP / IP con Wmic
Configurar Netbios sobre TCP/IP con wmic
Obtener configuracion actual
Ejecutar con permisos de administrador
wmic nicconfig get caption,index,TcpipNetbiosOptions
Caption Index TcpipNetbiosOptions
[00000001] VIA Rhine II Fast Ethernet Adapter 1 0
[00000002] Puerto de infrarrojos 2
[00000003] Adaptador asínc. de RAS 3
......
[00000016] Minipuerto WAN (Monitor de red) 16
[00000017] Minipuerto del administrador de paquetes 17
Valores posibles
0 – Use NetBIOS setting from the DHCP server
1 – Enable NetBIOS over TCP/IP
2 – Disable NetBIOS over TCP/IP
Cambiarlos con wmic
Nos interesa la tarjeta con nombre "VIA Rhine II Fast Ethernet Adapter". Tiene index = 1
Ejecutamos:
wmic nicconfig where index=1 call SetTcpipNetbios 2
Obtenemos esta salida
Ejecutando (\\EQUIPO\ROOT\CIMV2:Win32_NetworkAdapterConfiguration.Index=1)->SetTcpipNetbios()
Ejecución correcta del método.
Parámetros de salida:
instance of __PARAMETERS
{
ReturnValue = 0;
};
Esto lo podemos mejorar con un script que lea un fichero y ejecute el wmic remotamente con
wmic /NODE:Equipo-Remoto nicconfig where index=1 call SetTcpipNetbios 2
Obtenido de
http://www.mbaeker.de/2012/04/windows-2008-server-core-und-netbios-over-tcpip-abschalten/
Comentarios
Publicar un comentario