Function java
SetOutPath '$TEMP'
SetOverwrite on
File lib\jre-6u24-x64.exe
ExecWait '$TEMP\jre-6u24-x64.exe'
FunctionEnd
If the user change JRE version 24 to 29(jre-6u24-x64.exe changed to jre-6u29-x64.exe),the above code is not working.
Is possible to identify JRE version ? How to install dynamically install JRE?
SetOutPath '$TEMP'
SetOverwrite on
File lib\jre-6u24-x64.exe
ExecWait '$TEMP\jre-6u24-x64.exe'
FunctionEnd
If the user change JRE version 24 to 29(jre-6u24-x64.exe changed to jre-6u29-x64.exe),the above code is not working.
Is possible to identify JRE version ? How to install dynamically install JRE?
Comment