如何在vbscript中调用多个批处理文件?

时间:2010-03-30 05:35:08

标签: vbscript

我使用以下代码调用批处理文件:

dim shell  
set shell=createobject("wscript.shell")  
shell.run "a.bat D:\a"  
set shell=nothing    

如何调用多个批处理文件,以便在第一个文件的执行结束时执行第二个文件。 一如既往,我非常感谢您提供的任何帮助。

2 个答案:

答案 0 :(得分:3)

下面

shell.run "a.bat D:\a"

添加另一行

shell.run "b.bat ...."

或创建一个调用所有其他批处理文件的批处理文件,并从脚本中调用该批处理文件。

答案 1 :(得分:1)

明确选项

Dim oShell

设置oShell = Wscript.CreateObject(“WScript.Shell”)

oShell.Run“RunAs / noprofile / user:Admininistrator”“%comspec%/ c 1stcommand&& 2ndcommand&& 3rdcommand”“”,1,false

WScript.Sleep 1000

oShell.Sendkeys“AdmininistratorPassword~”

Wscript.Quit