如何从在另一个cmd窗口(windows)中运行的进程返回错误代码
我正在从 cmd 提示符运行脚本。此脚本打开另一个 cmd 提示符并在那里运行另一个批处理文件。我想等待错误代码,然后将其发送回原来的cmd窗口。有没有一种好的方法可以在不将错误代码写入文件的情况下执行此操作?
谢谢, 李
I'm running a script from the cmd prompt. This script opens another cmd prompt and runs another batch file there. I want to wait for the error code and then send it back to the original cmd window. Is there a nice way to do this without writing the error code to a file?
Thanks,
Li
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果我对你的理解正确,你想要 此解决方案。它解决了从在单独的
cmd
会话中运行的脚本向调用脚本返回错误级别的问题。If I inderstand you correctly, you want this solution. It solves the problem of returning error level to the calling script from the script that was run in a separate
cmd
session.