是否可以(以编程方式)检索 Windows 任务的退出代码?
我正在从批处理文件中运行一个任务,如下所示:
schtasks /run /tn TASK_NAME
该任务依次执行另一个批处理文件,该文件可能会退出并显示错误代码:
exit -1
有什么方法可以获取已完成任务的退出代码吗?
I am running a task from inside a batch file like this:
schtasks /run /tn TASK_NAME
The task, in turn, executes another batch file, that may exit with an error code thus:
exit -1
Is there any way to get the exit code of the task that completed?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为 ERRORLEVEL 可能就是您正在寻找的:http://www.robvanderwoude.com/errorlevel。 php
I think ERRORLEVEL might be what you're looking for: http://www.robvanderwoude.com/errorlevel.php