vote up 2 vote down star

Is it possible to modify a registry value (whether string or DWORD) via a .bat/.cmd script?

flag

9 Answers

vote up 7 vote down check

You can use the REG command (http://www.ss64.com/nt/reg.html)

link|flag
vote up 7 vote down

Yes, you can script using the reg command. Example:

reg add HKCU\Software\SomeProduct
reg add HKCU\Software\SomeProduct /v Version /t REG_SZ /d v2.4.6

This would create key HKEY_CURRENT_USER\Software\SomeProduct, and add a String value "v2.4.6" named "Version" to that key.

reg /? has the details.

link|flag
vote up 2 vote down

You can make a .reg file and call start on it. You can export any part of the registry as a .reg file to see what the format is.

Format here:

http://support.microsoft.com/kb/310516

This can be run on any Windows machine without installing other software.

link|flag
vote up 0 vote down

Yes. You can use reg.exe which comes with the OS to add, delete or query registry values. Reg.exe does not have an explicit modify command, but you can do it by doing delete and then add.

link|flag
vote up 0 vote down

In addition to reg.exe, I highly recommend that you also check out powershell, its vastly more capable in its registry handling.

link|flag
vote up 0 vote down

@Franci Penov - modify is possible in the sence of overwrite with `/f, eg

reg add "HKCU\Software\etc\etc" /v "value" /t REG_SZ /d "Yes" /f
link|flag
vote up 0 vote down

I want to add that script on other PC form server... how ?

thanks ez@z

link|flag
vote up 0 vote down

i wnat a add string value in [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Run]

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.