in reply to Re^2: Reading key from registry (32 and 64 Bit)
in thread Reading key from registry (32 and 64 Bit)
Thanks - But how can i read keys on x64 machine from HKEY_LOCAL_MACHINE\SOFTWARE\Intel and not from HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node Wow6432Node folder?
My interpretation of this:
To disable and enable registry reflection for a particular key, use the RegDisableReflectionKey and RegEnableReflectionKey functions. Applications should disable reflection only for the registry keys that they create and not attempt to disable reflection for the predefined keys such as HKEY_LOCAL_MACHINE or HKEY_CURRENT_USER. To determine which keys are on the reflection list, use the RegQueryReflectionKey function.
Is that you shouldn't -- even if you can work out a way to do so.
The rules are there for good reason -- the configuration of things will often need to be different for the 32-bit and 64-bit versions of the same software.
If you choose to ignore the rules, then you will likely end up breaking something. At best, it will be your own program. At worst, it could be the OS.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: Reading key from registry (32 and 64 Bit)
by roteme (Acolyte) on Mar 01, 2012 at 08:23 UTC | |
|
Re^4: Reading key from registry (32 and 64 Bit)
by roteme (Acolyte) on Mar 11, 2012 at 15:38 UTC | |
by BrowserUk (Patriarch) on Mar 11, 2012 at 15:41 UTC |