This website uses cookies. By clicking Accept, you consent to the use of cookies. Click Here to learn more about how we use cookies.
Turn on suggestions
Auto-suggest helps you quickly narrow down your search results by suggesting possible matches as you type.
- Revenera Community
- :
- InstallShield
- :
- InstallShield Forum
- :
- Registry
Subscribe
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Subscribe
- Mute
- Printer Friendly Page
‎Oct 17, 2011
10:15 AM
Registry
Hello
I need to create some registry keys on a 64 bits machine. And in all my test the keys are created under HKey_Local_Machine\software\Wow6432Node\MyKey and I need to created under HKey_Local_Machine\software\MyKey
Is there any form that do this??
I need to create some registry keys on a 64 bits machine. And in all my test the keys are created under HKey_Local_Machine\software\Wow6432Node\MyKey and I need to created under HKey_Local_Machine\software\MyKey
Is there any form that do this??
(2) Replies
‎Oct 17, 2011
12:44 PM
In an InstallScript function, use
to use the 64-bit part of the registry.
After you're done, revert back to the default settings by using
REGDB_OPTIONS = REGDB_OPTION_WOW64_64KEY;
to use the 64-bit part of the registry.
After you're done, revert back to the default settings by using
REGDB_OPTIONS = REGDB_OPTION_USE_DEFAULT_OPTIONS;