Dumping registry trees

  • Thread starter Thread starter damned
  • Start date Start date
D

damned

Hi everyone,

Is it possible to dump registry trees with a script or with a command-line
utility?
 
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
 
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
 
Back
Top