| Hello wrote: |
Okay, but why...?  |
It seems to be a similar issue with "Wow6432Node" (32 versus 64 bits Registry versions):
| Quote: |
When using the registry API in a 32-bit application, Wow6432Node acts like a symbolic link that loops back to the same 32-bit hive. It does not map into the 64-bit hive as you might think.
For example, walking the registry tree down to HKLM\Software\Wow6432Node in a 32-bit application loops back to HKLM\Software. The result is infinite recursion: HKLM\Software\Wow6432Node\Wow6432Node\Wow6432Node\..., etc.
If you want to view the 64-bit registry hive in 32-bit code you must open HKLM\Software using KEY_WOW64_64KEY. Do not try to open Wow6432Node; it will not work.
Source |
Since SandboxIE does a virtualization with registry hives also, a "symbolic link" comes out: to exclude "HKEY_USERS\sandbox_{user-name}_defaultbox" branches don't help.
Even if looping issue doesn't comes out, there aren't an accurate registry tracking definitively.