Registry.nsh question
i'm trying to read all subkeys of a registry key.
${registry::Open} "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall" "/V=0 /S=0" $0
Loop:
${registry::Find} $1 $2 $3 $4
MessageBox MB_YESNO "$2. Continue?" IDNO +2
Goto Loop
${registry::Close}
this was just a code for testing, but the problem is, that at the end some additional subkeys are being displayed. when i use /G=0 all results are empty.
i will add some more checks later (for certain values), but i want to get this issue solved first. any hints?