just to verify that I understood it correctly:
Since i use 32Bit NSIS, i got an 32BIT installer, which by default works in 32Bit "area".
Is the following the same as above? (Should be 🙂#Windows 32Bit:
ReadRegStr HKLM Software\JavaSoft (e.g. for Java 32 Bit)
#Windows 64Bit:
ReadRegStr HKLM Software\JavaSoft (e.g. for Java 32 Bit)
#Got redirected -> thus the key is actually taken from:
#HKLM SOFTWARE\Wow6432Node\JavaSoft (e.g. for Java 32 Bit)
If i now want to check the 64 bit "area":#Windows 32Bit:
SetRegView 32
ReadRegStr HKLM Software\JavaSoft (e.g. for Java 32 Bit)
#Windows 64Bit:
SetRegView 32
ReadRegStr HKLM Software\JavaSoft (e.g. for Java 32 Bit)
#Windows 64Bit:
SetRegView 64
ReadRegStr HKLM SOFTWARE\JavaSoft (e.g. for Java 64Bit)
#No rederection -> thus the key is taken from:
#HKLM SOFTWARE\JavaSoft (e.g. for Java 64 Bit)