I have a 32 bit VC++ application and its registry is created under 32 bit registry hive :
HKLM\SOFTWARE\Wow6432Node\<company>\<product>
Now I'm migrating to 64 bit version of my application and I want to migrate all the keys and values under 32 bit registry hive of my application to 64 bit registry hive, e.g.:
HKLM\SOFTWARE\<company>\<product>
Does Microsoft provides any feature to accomplish this?
Kindly provide any other way to do this other than manually replacing \Wow6432Node
in keys path of an exported .reg
, then importing it.
.reg
file.