; An example how to obtain a running instance of the Internet Explorer ; ; Source: http://dbforums.com/t867088.html ; ; Requires: AutoIt with COM Support ; First we activate an example instance of the internet explorer. $URL="http://www.autoitscript.com" Run(@COMSPEC & " /c start iexplore.exe " & $URL) Sleep(4000) ; Give IE some time to load ; Internet Explorer is partly integrated in shell.application $oShell = ObjCreate("shell.application") ; Get the Windows Shell Object $oShellWindows=$oShell.windows ; Get the collection of open shell Windows if not Isobj($oShellWindows) then Msgbox(0,"Error","Failed to obtain shell windows. Error: " & @error) exit endif ; Now we search through all open Shell Windows and locate our internet page $MyIExplorer="" for $Window in $oShellWindows ; Count all existing shell windows ; Note: Internet Explorer appends a slash to the URL in it's window name if $Window.LocationURL = $URL & "/" then $MyIExplorer=$Window exitloop endif next if not IsObj($MyIExplorer) then MsgBox(0,"Error","Could not find a running instance of the internet explorer") exit endif ; Now we can do whatever we want, because the found object ; has the same characteristics as "InternetExplorer.Application" Msgbox(0,"OK","Found the running instance of the Internet Explorer" & @CRLF & _ "Press 'OK' to navigate to www.google.com") $NewURL = "http://www.google.com/" $MyIExplorer.Navigate( $NewURL ) sleep(3000) ; Give it the time to load the web page Msgbox(0,"Quit","Press 'OK' to quit IE") $MyIExplorer.Quit ; Quit IE $MyIExplorer=0 ; Release from memory