changing value of a registry key from command line possible ?

  • Thread starter Thread starter bill
  • Start date Start date
B

bill

Hello,

is it possible to change the value of a registry key from command
line? How?



Thank's a lot for any feedback!

Bill
 
You can use Regedit.exe with a .reg file:

REGEDIT /S newvalue.REG

Or, if you absolutely need to purely do it at the command line, you can
use Reg.exe. (reg add). Reg.exe is an NT4 Resource Kit utility. It is
on the Windows 2000 CD in the Support Tools folder. If you are using XP
the tool is included with the OS.

John
 
You can use Regedit.exe with a .reg file:

REGEDIT /S newvalue.REG

Or, if you absolutely need to purely do it at the command line, you can
use Reg.exe. (reg add). Reg.exe is an NT4 Resource Kit utility. It is
on the Windows 2000 CD in the Support Tools folder. If you are using XP
the tool is included with the OS.

John



Thank's a lot John; I am going to study "Reg.exe. (reg add)" :-)

Cheers,

Bill
 
Back
Top