Archived from groups: microsoft.public.win2000.setup_deployment (More info?)
how can i change the "netbiosoptions" setting for all adapters in the registry through a .reg file ?
i don't want to do this for all adapters manually, instead i want a .reg file which i can import
through regedit /s and which for examples sets the "NetbiosOptions" to dword:00000002
in order to disable netbios over tcp/ip for all adapters
an export and an import of the current setting is not an option, when installing a new computer i don't know
the current adapter id's
setting the "NetBIOSOptions" setting in a unattended setup file is not an option either since i need the setting enabled
during the install process in order to be able to join a domain
i intend to disable netbios over tcp/ip for all adapters AFTER the unattended installation is done through the import
of a registry file
Archived from groups: microsoft.public.win2000.setup_deployment (More info?)
Hi Markus,
Thanks for your posting here.
We need to know the interface on clients then change the relevant registry
settings. So you need a script to perform the migration. It would best be
addressed in the Developer newsgroups. I have provided the link below:
In fact, you can disable NetBIOS over TCP/IP by using a DHCP server with
Microsoft vendor-specific option code 1, ("Disable NetBIOS over TCP/IP" ).
Setting this option to a value of 2 disables NBT. For more information
about using this method, refer to the DHCP Server Help file in Windows.
You can also refer to the following article more detailed information.
====================================================
When responding to posts, please "Reply to Group" via your newsreader so
that others may learn and benefit from your issue.
====================================================
This posting is provided "AS IS" with no warranties, and confers no rights.
Archived from groups: microsoft.public.win2000.setup_deployment (More info?)
Here is a simple vbscript the enables netbios on all network adapters.
Save it as filename.vbs and run it...(the first and second row
should be one line (news-agent wraps the lines)
Set objNICs =
GetObject("winmgmts:{impersonationLevel=impersonate}" ).InstancesOf("Win32_NetworkAdapterConfiguration" )
For Each objNIC In objNICs
If objNIC.IPEnabled Then
'Enable NetBios
objNIC.SetTcpipNetbios 1
End If
Next
On Fri, 21 May 2004 05:51:04 -0700, "madlener@news.postalias"
<madlener@news.postalias> wrote:
>how can i change the "netbiosoptions" setting for all adapters in the registry through a .reg file ?
>
>i don't want to do this for all adapters manually, instead i want a .reg file which i can import
>through regedit /s and which for examples sets the "NetbiosOptions" to dword:00000002
>in order to disable netbios over tcp/ip for all adapters
>
>an export and an import of the current setting is not an option, when installing a new computer i don't know
>the current adapter id's
>
>setting the "NetBIOSOptions" setting in a unattended setup file is not an option either since i need the setting enabled
>during the install process in order to be able to join a domain
>
>i intend to disable netbios over tcp/ip for all adapters AFTER the unattended installation is done through the import
>of a registry file
>
>thanks
>markus
>
====================================================
When responding to posts, please "Reply to Group" via your newsreader so
that others may learn and benefit from your issue.
====================================================
This posting is provided "AS IS" with no warranties, and confers no rights.
Archived from groups: microsoft.public.win2000.setup_deployment (More info?)
Hi Markus,
The Win32_NetworkAdapterConfiguration class includes extra properties and
methods that support the management of the TCP/IP protocols. The
SetTcpipNetbios method is used to set the default operation of NetBIOS over
TCP/IP.
====================================================
When responding to posts, please "Reply to Group" via your newsreader so
that others may learn and benefit from your issue.
====================================================
This posting is provided "AS IS" with no warranties, and confers no rights.
You are about to answer a thread that has been inactive for more than 6 months. If you still wish to proceed, please ensure that your posting is original and does not duplicate or overlap any prior responses to this thread.