Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Open web page with vbscript 1

Status
Not open for further replies.

meldrape

Programmer
May 12, 2001
516
US
Greetings, I have a script that I run to collect system data. It's not running in an ASP page, but rather stand alone. When it finishes, I'd like it to open a web page. Is this possible? The last line of code is:
Code:
wscript.echo "Finished Collection Information for the System."
I'd appreciate your thoughts. I'm not familiar with the syntax and I'd search for it but the search feature isn't working here. Thanks in advance.
 
Have you tried something like this ?
Set Sh = WScript.CreateObject("WScript.Shell")
Sh.Run "\path\to\webpage.html", 3

Hope This Helps, PH.
Want to get great answers to your Tek-Tips questions? Have a look at FAQ219-2884 or FAQ222-2244
 
Many thanks for your reply. I'll give it a try and let you know how it work. Thanks again.
 
I tried it and it works great. Many thanks for your help!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top