Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个旧的 vbs 脚本文件被 AutoSys 作业启动。我能否以及如何返回一个 int 返回值来指示成功或失败?
尝试:
WScript.Quit n
其中 n 是您要返回的 ERRORLEVEL
我找到了答案:0)
DIM returnValue returnValue = 99 WScript.Quit(returnValue)
这似乎运作良好。