I get the following;
Function: "DetectJRE"
Usage: ReadRegStr $(user_var: output) rootkey subkey entry
root_key=(HKCR|HKLM|HKCU|HKU|HKCC|HKDD|HKPD)
Error in script "stdin" on line 2029 -- aborting creation process
from
ReadRegStr $(TEMP2) HKLM "SOFTWARE\JavaSoft\Java Runtime Environment" "CurrentVerision"
Any ideas?
help with error during compile readregstr
7 posts
$(TEMP2) is not a variable. Variables start with "$" but without "()" or "{}".
I copied this from an example script to detect installed J2SE.
Does it matter that it is defined?
!define TEMP2 $R1
Does it matter that it is defined?
!define TEMP2 $R1
deguix is right, beside, try simple things:
If you want your custom variables, see Var instruction.
ReadRegStr $0 HKLM "SOFTWARE\JavaSoft\Java Runtime Environment" "CurrentVerision"
is their a way to test a numeric variable (1.4) with a > < test?
You can use:
IntCmp command - only for integer numbers.
OR
Math plugin
IntCmp command - only for integer numbers.
OR
Math plugin
Why can I never find these things
Thanks very much. :-)
Thanks very much. :-)