Hi,
I don't understand why my script doesn't launch IE:
#include <MsgBoxConstants.au3>
AutoItSetOption("WinTitleMatchMode", 1)
Local $iPID
$iPID = Run("iexplorer.exe","C:\Program Files (x86)\Internet Explorer")
MsgBox ( $MB_SYSTEMMODAL, "Valeur retournée", $iPID )
The returned value is still 0 and IE is not started. I'm running Win7 x64.
I tried: but don't start ie neither:
#include <MsgBoxConstants.au3>
AutoItSetOption("WinTitleMatchMode", 1)
Local $iPID
$iPID = Run("C:\Program Files (x86)\Internet Explorer\iexplorer.exe")
MsgBox ( $MB_SYSTEMMODAL, "Valeur retournée", $iPID )