使用WScript.shell运行sqlcmd-waitonreturn无法启动

时间:2018-06-26 12:15:49

标签: vbscript sqlcmd

我想从vbscript启动sqlcmd-script。 我和行得通的是:

return = CreateObject("WScript.Shell").Run("cmd /c ""sqlcmd -S localhost -i --Path and Filename Script--.sql -o --Path and Filename Log--.log -b""")

我的问题:如果现在添加intWindowStylebWaitOnReturn的参数,该脚本将不再运行。

示例:

return = CreateObject("WScript.Shell").Run("cmd /c ""sqlcmd -S localhost -i --Path and Filename Script--.sql -o --Path and Filename Log--.log -b""", 0, True)

WScript.Echo说return = 1。

我通过cscript //nologo --script--批量调用VBScript。

0 个答案:

没有答案