up vote 1 down vote favorite
share [g+] share [fb]

I would like to document the file format of regedit utility, so data can be merged into the registry.

From the command-line you can (silently) merge data from a batch file like this:

regedit /s file.reg

Exporting from a subkey goes like this:

regedit /e file.reg "HKEY_XX\key"
link|improve this question

79% accept rate
I don't think SO's intention is to rebuild all the knowledge of the internet in one place, but rather to fill the gaps a Google search leaves open. – Tomalak Dec 2 '08 at 15:29
feedback

4 Answers

Documenting the .reg file format is really more Microsoft's job.

link|improve this answer
Although that documentation is not entirely. Go Microsoft. – pst Jan 2 '10 at 4:02
..not entirely accurate – pst Jan 2 '10 at 4:02
Documentation rarely is. – P Daddy Jan 3 '10 at 16:47
feedback
up vote 2 down vote accepted

Remove keys and values by using the minus sign (-).

REGEDIT4
[-HKEY_CURRENT_USER\RemoveThisTree]
[HKEY_CURRENT_USER\RemoveValue]
"valueName"=-
link|improve this answer
Cool, I didn't know the minus sign removed registry keys and values. Good info. – Ron Todosichuk Dec 8 '08 at 14:51
feedback

Have a look at wotsit.org and search for "reg". You can download a relatively good documentation for "Windows Registry File Format (ASCII .REG format)" by Jeroen Mostert there.

link|improve this answer
feedback

Use Reg apis.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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