Remote Registry Changes/Merge

  • Thread starter Thread starter normalit
  • Start date Start date
N

normalit

I am having troubles finding the answer I need, so hopefully I can get
some assistance - I would appreciate it.

I have a change in a registry value that I need to push to a select few
computers in our organization. I have looked through several options -
connecting to the 50+ computers within the registry and manually
dragging the file into the registry window; creating a batch file for
them to run; searching on the Internet for an easier remote registry
tool.

I have yet to find an easy solution. Thank you in advance.

I'm looking for a program, scripts, VB6, batch file code, etc.
 
Open a command prompt window and enter REG /? You'll get a list of the options available. REG ADD /? will give you the parameters, for example. REG is capable of updating the Registry on remote machines.

If you only need to push the change out to a few machines, a simple BAT file

REG ADD \\Machine1\HK..........................
REG ADD \\Machine2\HK.........................

and etc. would suffice.
 
I am having troubles finding the answer I need, so hopefully I can get
some assistance - I would appreciate it.

I have a change in a registry value that I need to push to a select few
computers in our organization. I have looked through several options -
connecting to the 50+ computers within the registry and manually
dragging the file into the registry window; creating a batch file for
them to run; searching on the Internet for an easier remote registry
tool.

I have yet to find an easy solution. Thank you in advance.

I'm looking for a program, scripts, VB6, batch file code, etc.

I use "Multi Remote Registry Change"

found here

http://www.eytcheson.com/
 
Back
Top