how to call more than 1 batch files in a vbscript?
Posted
by sushant
on Stack Overflow
See other posts from Stack Overflow
or by sushant
Published on 2010-03-30T05:35:07Z
Indexed on
2010/03/30
5:43 UTC
Read the original article
Hit count: 323
vbscript
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.
© Stack Overflow or respective owner