Link to home
Start Free TrialLog in
Avatar of nav2567
nav2567Flag for United States of America

asked on

Remote update DNS suffixes on domain member servers.

Hello,

I need to add additional DNS suffixes to some 100+ domain servers.  The domain servers include WIN2K, WIN2K3, WIN2K8.  Is it possible I can script that from one of the domain servers and update the other servers?

Thanks.
SOLUTION
Avatar of Darius Ghassem
Darius Ghassem
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of nav2567

ASKER

I follow this: http://support.microsoft.com/kb/275553 and do the following:  

Create a text file with the following two lines of text and save it as the Suffix.txt file.
The following spacing must be exactly as shown, where adatum.xxx signifies a domain suffix. Up to six domain suffixes may be specified. The search order is left to right.

\Registry\Machine\System\CurrentControlSet\Services\TCPIP\Parameters
SearchList="testadatum.com,test2adatum.net,test3adatum.gov"
Copy the Regini.exe and Suffix.txt files to the preceding location and run the regini.exe suffix.txt command.

When the script has updated the registry, you must restart the computer for the settings to be updated.

To run the script you must have administrator or system-level access to the computer.

....and regini.exe suffix.txt works on the local server.  How do I deliver this to the remote servers?  By the way, it there a way to avoid a reboot?
ASKER CERTIFIED SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of nav2567

ASKER

thanks.