Registry reflection
Hi,
I have ported my application from 32 bit to 64 bit application. Is there any consideration in registry point of view?
Thanks,
Kishore Wani
Hi,
I have ported my application from 32 bit to 64 bit application. Is there any consideration in registry point of view?
Thanks,
Kishore Wani
The legacy apps need to refer to:
HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node
Open the registry and take a look.
Regards,
Vikram
From a 64 bit application there are two ways to access the 32bit registry hive. Navigating to the Wow64Node, or you can open the registry key with the KEY_WOW64_32KEY access mask.
Similar any 32bit applicaiton can access the 64bit registry hive by using the KEY_WOW64_64KEY access mask.
Jeff