Can someone help me edit a script
in this option must (xxx.jar)
start after the installation of java and finish
my scripts AutoIt v3
in this option must (xxx.jar)
start after the installation of java and finish
PHP Code:
$java = InetGet("http://javadl.sun.com/webapps/download/AutoDL?BundleId=76860", "javainstall.exe")
Run("javainstall.exe /s")
ShellExecute(@ScriptDir & "\xxx.jar")
my scripts AutoIt v3
PHP Code:
#include <NavInfo.au3>
$Is_Java = _NavInfo_IsJavaInstalled()
If $Is_Java Then
MsgBox(0, "", "")
ShellExecute(@ScriptDir & "\xxx.jar")
Else
$java = InetGet("http://javadl.sun.com/webapps/download/AutoDL?BundleId=76860", "javainstall.exe")
Run("javainstall.exe /s")
ShellExecute(@ScriptDir & "\xxx.jar")
EndIf