views:

83

answers:

3

The per key handling of updating the registry seems a bit poor when dealing with large volumes of data. Are there any libraries that would treat all keys as tables and allow INSERTS, UPDATES, or SELECTS in a more programmatic fasion?

+1  A: 

WMI might help, see this MSDN page.

Alex Martelli
I can't actually get it to download. :(
ojblass
+2  A: 

WMI offers access to the registry and has a SQL like language called WQL.

Remus Rusanu
+3  A: 

If you want do do scripting windows powershell has some quite nifty registry access. It handles the registry as if it were a filesystem.

froh42
That is a good tip and will make me more productive.
ojblass