将批处理文件调用到 运行 后,其余脚本未 运行ning?

Rest of script not running after calling a batch file to run?

我有以下脚本 batch 脚本:

call standalone.bat

"C:\Program Files (x86)\Notepad++\notepad++.exe" "C:\Program Files\jboss-eap-6.2\jboss-eap-6.2\standalone\log\server.log"

第一个命令按预期运行,但脚本似乎从未调用记事本打开 server.log 文件。

这里有什么问题?

编辑:standalone.bat 的结尾是:

if ERRORLEVEL 10 goto RESTART

:END
if "x%NOPAUSE%" == "x" pause

:END_NO_PAUSE

Stephan 可能在他的 中诊断出问题 - standalone.bat 可能以 exit 命令终止。如果这是正确的,那么您可以通过更改
来解决此问题,而无需修改 standalone.bat call standalone.bat

cmd /c standalone.bat.