How would I start Internet explorer from a script and
open a specific web page?

Thanks for your help - Mike

Re: Starting Internet Explorer by Viatcheslav

Viatcheslav
Sun Feb 08 13:50:30 CST 2004

You may use WshShell.Run method and pass URL as parameter. This will open
URL with default browser, not necessary with IE:

Dim Shell
Set Shell = CreateObject("WScript.Shell")
Shell.Run "http://www-sharp.com/"

If you need exactly IE, use

Dim IE
Set IE = CreateObject("InternetExplorer.Application")
IE.Visible = True
IE.Navigate "http://www-sharp.com/"

//------------------------------------
Regards,
Vassiliev V. V.
http://www-sharp.com -
Scripting/HTA/.Net Framework IDE

"Mike Simpson" <anonymous@discussions.microsoft.com> ???????/???????? ?
???????? ?????????: news:d02801c3ee74$1343bfd0$a501280a@phx.gbl...
> How would I start Internet explorer from a script and
> open a specific web page?
>
> Thanks for your help - Mike