how to call more than 1 batch files in a vbscript?
- by sushant
i use following code to call a batch file:
dim shell
set shell=createobject("wscript.shell")
shell.run "a.bat D:\a"
set shell=nothing
how do i call more than 1 batch files, so that when 1st file's execution is over, the 2nd file is executed.
as always, i really appreciate any help offered.