Posts: 12,136
Threads: 142
Joined: Dec 2002
Quote:I'm using QM with Windows 8.1 on a 64bit machine.
Is ist possible to enumerate registry keys
without being automatically mapped/restricted to
the Wow6432Node subkeys
(e.g. enumerating all keys under HKEY_LOCAL_MACHINE\SOFTWARE,
not just those under HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node)
?
Posts: 12,136
Threads: 142
Joined: Dec 2002
Macro
Enumerating 64-bit registry keys
str s
out "32-bit keys:"
foreach s "SOFTWARE" FE_RegKey HKEY_LOCAL_MACHINE 1
,out s
out "64-bit keys:"
foreach s "SOFTWARE" FE_RegKey HKEY_LOCAL_MACHINE|HKEY_64BIT 1
,out s
;Flag HKEY_64BIT also can be used with other QM registry functions.