Click here to Skip to main content
Licence 
First Posted 26 Oct 2002
Views 92,768
Bookmarked 68 times

Import/Export registry sections as XML

By | 21 Jan 2003 | Article
Export registry sections as XML to simplify registry diffs
Exporting registry sections as Xml to simplify registry diffs
Exporting registry sections as XML to simplify registry diffs

Introduction

This article details a tool aimed to import/export registry sections in XML format, to make registry diff easier in practice.

1. Why XML ?

Although anyone can use the built-in .reg registry export format from regedit, that one is not exactly suited for readability and performing diffs. That's why I decided to come up with a fast-sketched XML format to play with.

The hierarchical nature of XML content, in addition to Xml diff tools[^] already available to us makes it an ideal format to work with.

In addition, modern diff tools like Araxis[^] (commercial product) can be used anytime you want your work done finished fast and with strong software.

2. Using this tool

2.1 Exporting as XML

It should be easy to use since basically it mimics the good ol' regedit UI. It would have been smarter to plug the XML exporter inside regedit, but as far as I know the source code for regedit is not redistributed, I had to rewrite a significant portion of regedit just to make sure I don't end up with a cmdline tool, which would have certainly offended some people out there.

You can select one or more key sections, just like with any multiple selection tree ctrl.

Right-click to export them to the XML format.

When only one registry section is exported at a time, a default output XML filename is suggested.

The export process may be quite lengthy in time, of course. But no serious guy would export the whole registry, wouldn't you ? At any moment you may hold the ESCAPE key to abort.

When completed, the resulting standard XML is automatically open in MSIE.

2.2 Importing from XML

Importing XML sections to the registry is just as easy. Just select the appropriate menu Option from the File menu. Message boxes will occur whenever the XML file contains syntax error(s), or if for any reason it wasn't possible to open/create/set a given key or value.

2.3 A simple export/import test procedure

Let's just test it by following the steps below :

  • Launch the tool, and expand the HKEY_LOCAL_MACHINE \ System \ Setup key
  • Export it as XML, by leaving the default name Setup.xml
  • Once the export is finished, IE opens the resulting XML file. Close it.
  • In any text editor, open this file, and lookup the keyname Setup
  • Replace the keyname with SetupF, so to fake a new key
  • Taking the tool back, select Import from XML... and load Setup.xml
  • Once the import is finished, press F5 to refresh the tree
  • Expand the key again, and look for the new SetupF key, values and subkeys

3. The XML format

Let's take an example, if you export the HKEY_LOCAL_MACHINE\SYSTEM\Setup key, pictured here :

Exporting the HKEY_LOCAL_MACHINE\SYSTEM\Setup section
Exporting the HKEY_LOCAL_MACHINE\SYSTEM\Setup section

you'll get the standard XML below :

<?xml version="1.0" encoding="UTF-8"?>
 <registry>
  <k name="HKEY_LOCAL_MACHINE">
   <k name="SYSTEM">
    <k name="Setup">
     <v name="CmdLine" value="setup -newsetup"/>
     <v name="OsLoaderPath" value="\"/>
     <v name="SetupType" value="0x00000000 (0)" type="REG_DWORD"/>
     <v name="SystemPartition" value="\Device\HarddiskVolume1"/>
     <v name="SystemPrefix" value="cf 03 00 00 00 a0 3d e0" type="REG_BINARY"/>
     <v name="SystemSetupInProgress" value="0x00000000 (0)" type="REG_DWORD"/>
     <k name="AllowStart">
      <k name="AFD"/>
      <k name="EventLog"/>
      <k name="PlugPlay"/>
      <k name="ProtectedStorage"/>
      <k name="Rpcss"/>
      <k name="SamSs"/>
      <k name="Seclogon"/>
      <k name="WS2IFSL"/>
     </k>
    </k>
   </k>
  </k>
 </registry>

I have created a straight forward XML format. k stands for key, and v for value. Values have a type attribute whenever it's not a string. The shared source code is not rocket science but there's a generic writer, and a generic reader, which you can easily reuse for your own needs.

Update history:

  • Oct 27 '02 : code complete. Ability to export one or more registry sections
  • Nov 08 '02 : Ability to import registry sections as well.
  • Jan 22 '03 : Export routine made much faster (x5 approximately), based on User feedback

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

Stephane Rodriguez.



France France

Member

Addicted to reverse engineering. At work, I am developing business intelligence software in a team of smart people (independent software vendor).
 
Need a fast Excel generation component? Try xlsgen.
 


Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
GeneralUnicode Version Pinmembervipin_nvk3:24 21 Dec '08  
QuestionAny plans to update for XP/Vista? Pinmembervcor15:30 9 Aug '07  
GeneralYes it works! PinmemberdisplayAlias18:12 24 Dec '04  
QuestionOk.... how about Unicode support?? Pinmembersysop@HAL9K.com7:21 11 Nov '04  
AnswerRe: Ok.... how about Unicode support?? PinmemberDieguito1:25 30 Dec '04  
AnswerRe: Ok.... how about Unicode support?? Pinmembernagadravid17:52 3 Dec '08  
GeneralAnother use...!!!! Pinmemberpotterdl7:30 6 Aug '04  
GeneralExport reg sections without MFC Pinmembergonx0:08 28 Mar '03  
GeneralRe: Export reg sections without MFC Pinmember.S.Rod.2:12 28 Mar '03  
GeneralRe: Export reg sections without MFC Pinmembergonx16:10 28 Mar '03  
GeneralRe: Export reg sections without MFC Pinmember.S.Rod.18:34 28 Mar '03  
GeneralRe: Export reg sections without MFC Pinmembersysop@HAL9K.com8:16 12 Nov '04  
QuestionError? PinmemberKant7:07 23 Jan '03  
Questionwhy is so slow ? Pinmembersahn04:44 22 Jan '03  
AnswerRe: why is so slow ? PinmemberKant6:23 23 Jan '03  
GeneralRe: why is so slow ? Pinmember.S.Rod.6:45 23 Jan '03  
GeneralGreat Code! PinmemberDieter Buecherl7:00 12 Nov '02  
QuestionWhat about Import Tool PinmemberRama Krishna3:09 28 Oct '02  
AnswerRe: What about Import Tool PinmemberObliterator4:58 30 Oct '02  
GeneralRe: What about Import Tool PinmemberObliterator6:44 30 Oct '02  
GeneralOptional value attribute to the k element PinmemberDalle22:49 27 Oct '02  
GeneralRe: Optional value attribute to the k element Pinmember__Stephane Rodriguez__23:06 27 Oct '02  
GeneralRe: Optional value attribute to the k element PinadminChris Maunder4:16 28 Oct '02  
GeneralQuestion on tagnames PinadminChris Maunder7:23 27 Oct '02  
GeneralRe: Question on tagnames Pinmember__Stephane Rodriguez__8:14 27 Oct '02  

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web04 | 2.5.120517.1 | Last Updated 22 Jan 2003
Article Copyright 2002 by Stephane Rodriguez.
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid