Globally remove "Append parent suffixes of the primary domain suffix"

  • Thread starter Thread starter Ben Sharrock
  • Start date Start date
B

Ben Sharrock

DNS Settings by default have a tick in the box for setting:
Append parent suffixes of the primary domain suffix

I want to remove this tick from all Win2k machines on my
domain. I cant find a DHCP option that sets this, I
can't find a Group Policy in any template that sets this,
I can't find the registry entry to make a reg file to run
at logon, is there ANY way to set this option short of
sitting down in from of EVERY machine in the company?

Many thanks in advance for any suggestions.
 
It's OK, I found a way.

In case anybody is interested, here's what I did.

The reg key is:
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Tcpip
\Parameters]
"UseDomainNameDevolution"=dword:00000000
(or if you want the tick in the box;
"UseDomainNameDevolution"=dword:00000001)

I used a batch file to run the following command which
imports a reg file without user intervention;
regedit /s filename.reg

both batch file and reg file go in the default domain
group policy location for computer configuration, windows
settings, scripts, startup.
(the policy is the batch file, no parameters)

Sorted.
 
Back
Top