Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Enumerating 64-bit registry keys
#1
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)
?
#2
Macro Enumerating 64-bit registry keys
Code:
Copy      Help
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.


Forum Jump:


Users browsing this thread: 1 Guest(s)