|
Are you sure you're wanting the entire tree ? Locale and Version are within that Key
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Active Setup\Installed Components\{89820200-ECBD-11cf-8B85-00AA005B4340}
HKEY_CURRENT_USER\SOFTWARE\Microsoft\Active Setup\Installed Components\{89820200-ECBD-11cf-8B85-00AA005B4340}
Is more so what you want isn't it? And why?
You could do something like this, I'll leave the editing to you or one of the other guys here to assist you.
You could shell out and run this REG EXPORT "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Active Setup\Installed Components\{89820200-ECBD-11cf-8B85-00AA005B4340}" C:\WDU.REG
Then you would need to open and read the C:\WDU.REG file and replace the "HKEY_LOCAL_MACHINE" with "HKEY_CURRENT_USER" You could then shell out and run REGEDIT /S C:\WDU.REG to place it into the HKEY_CURRENT_USER section.
|