Rajasekhar

Script – Open a Specified Web Site

Posted by: krsna on: February 4, 2006

Language: VBScript 

Description: Opens Internet Explorer and navigates to a specific Web site.

Script Code:

Dim objIE
Set objIE = WScript.CreateObject (“InternetExplorer.Application”)
objIE.Toolbar = false
objIE.statusbar=false
objIE.Navigate “http://www.microsoft.com”
objIE.Visible = true

Change the link to the desired website and it opens the same.

Leave a Reply