my scripts display this error message

05/01/2013 00:36 mourad0009#1
my scripts display this error message




---------------------------
31666592
---------------------------
Windows cannot find '31666592'. Make sure you typed the name correctly, and then try again. To search for a file, click the Start button, and then click Search.
---------------------------
OK
---------------------------

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")
    
ShellExecute($java)
    
ShellExecute(@ScriptDir "\xxx.jar")
EndIf 
05/01/2013 01:02 Achat#2
Dude, you are spamming the section.
Please use this Thread instead of creating new Threads: [Only registered and activated users can see links. Click Here To Register...]

Thank you!

Kind Regards
05/01/2013 01:25 mourad0009#3
Quote:
Originally Posted by Achat View Post
Dude, you are spamming the section.
Please use this Thread instead of creating new Threads: [Only registered and activated users can see links. Click Here To Register...]

Thank you!

Kind Regards
check

this a new problem
05/01/2013 22:14 Croco™#4
Quote:
$java = InetGet("http://javadl.sun.com/webapps/download/AutoDL?BundleId=76860", "javainstall.exe")
ShellExecute($java)
InetGet returns a handle for InetGetInfo not the path to the downloaded file.

Quote:
Return Value

Success: The return value changes depending on if the download is in the background:
Background: A handle is returned. The handle can be used with InetGetInfo(). The handle must be closed with InetClose().
Wait: The number of bytes downloaded.
Failure: Background: A handle is returned. To determine if there was an error with the download, use InetGetInfo(). The handle must be closed with InetClose().
Wait: Sets @error to non-zero and returns 0.
05/02/2013 17:52 Lawliet#5
[Only registered and activated users can see links. Click Here To Register...]