Dumping registry trees

D

damned

Hi everyone,

Is it possible to dump registry trees with a script or with a command-line
utility?
 
T

Torgeir Bakken (MVP)

damned said:
Hi everyone,

Is it possible to dump registry trees with a script or with a command-line
utility?

Hi

This will export a registry branch to a Unicode (REGEDIT5) file silently:

regedit.exe /S /E "some file.reg" "some key"


This will export a registry branch to a ASCII file silently:

regedit.exe /S /E:A "some file.reg" "some key"

More here:

Command line use of Regedit:
http://www.winguides.com/article.php?id=1&page=4&guide=registry

--
torgeir
Microsoft MVP Scripting and WMI, Porsgrunn Norway
Administration scripting examples and an ONLINE version of the 1328 page
Scripting Guide:
http://www.microsoft.com/technet/community/scriptcenter/default.mspx
 
D

damned

Thank you Torgeir


Torgeir Bakken (MVP) said:
Hi

This will export a registry branch to a Unicode (REGEDIT5) file silently:

regedit.exe /S /E "some file.reg" "some key"


This will export a registry branch to a ASCII file silently:

regedit.exe /S /E:A "some file.reg" "some key"

More here:

Command line use of Regedit:
http://www.winguides.com/article.php?id=1&page=4&guide=registry

--
torgeir
Microsoft MVP Scripting and WMI, Porsgrunn Norway
Administration scripting examples and an ONLINE version of the 1328 page
Scripting Guide:
http://www.microsoft.com/technet/community/scriptcenter/default.mspx
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top