12
3
In 64-bit Windows (Vista/7), there's HKLM\Software\Wow6432Node
where all the 32-bit registry stuff is. If I have a .reg file with some keys in it, how can I tell regedit to import it into the 32-bit registry (under Wow6432Node
) rather than the 64-bit registry?
Even if I put the Wow6432 path into the registry keys in the .reg file, Windows "cleverly" ignores them and puts them in the main 64-bit registry.
Shame there's no apparent way to do this in the file itself as we won't always have control over how it's imported. – Deanna – 2016-05-11T13:39:19.233
Don't use regedit for this. The
– Wolf – 2017-01-12T10:06:20.687reg
command would have accepted your patch. But (maybe only meanwhile) actions like import and export across the 64-bit/32-bit boundary are well supported by the 64-bitreg
tool. Please have a look on my answer.