Showing posts with label IE. Show all posts
Showing posts with label IE. Show all posts

Friday, February 8, 2008

How to Open Internet Explorer with particular site using VBScript

Option Explicit

Dim objIE
Set objIE = CreateObject("InternetExplorer.Application")

With objIE
.Visible = True
.FullScreen = False
.Navigate "http://www.igoogle.com/"
Do Until .ReadyState <> 4
WScript.Sleep 10000
Loop
End With

Set objIE = Nothing