How do I execute external programs from within a script?
Question
How do I execute external programs (eg. web browsers) from within a script?
Answer
You can create a shell object, and then run programs from within that.
Here is an example of running Notepad:
dim Shell
set Shell = CreateObject ("Wscript.Shell")
Shell.Run ("Notepad")
Here is an example of running Notepad:
dim Shell
set Shell = CreateObject ("Wscript.Shell")
Shell.Run ("Notepad")