I have a need to run programs sequentially. I can get them to launch all at the same time but that is confusing an cumbersome. I would like to have the second .exe file launched when the first .exe file is done running/installing.
PS. I am newer to vbscripting. Just finished a 3 day class and have been writing very small scripts.
This is what I have that will launch 1 (or more at the same time)
-----------
Dim wshshell
Set WshShell = WScript.CreateObject("WScript.Shell"
WshShell.Run "c:\windows\notepad.EXE"
-----------
I know that "notepad.exe" isn't a great example since it just pops up and doesn't actually try to install anything.
PS. I am newer to vbscripting. Just finished a 3 day class and have been writing very small scripts.
This is what I have that will launch 1 (or more at the same time)
-----------
Dim wshshell
Set WshShell = WScript.CreateObject("WScript.Shell"

WshShell.Run "c:\windows\notepad.EXE"
-----------
I know that "notepad.exe" isn't a great example since it just pops up and doesn't actually try to install anything.