
executing command from within script
Quote:
> How do I launch a command from within the script ?
> Specifically I want to call a html page on the internet to be shown
> in the default browser.
Set WshShell = WScript.CreateObject("WScript.Shell")
WshShell.Run ("http://www.microsoft.com")
Hope it helps.
Primoz