进程被强制终止时的进程退出代码
当我们使用任务管理器“结束进程”命令终止 Windows 中的进程时,该进程是否仍会返回退出代码?如果是这样,它返回什么退出代码?谢谢
When we kill a process in Windows with Task Manager End Process command, will the process still return an exit code? And if so, what exit code it returns? Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
通常,使用 TerminateProcess 终止进程。退出代码作为参数传递给此方法。
对于任务管理器,退出代码设置为 1,但我不知道它是否记录在任何地方。
In general, a process is terminated using TerminateProcess. The exit code is passed as a parameter to this method.
In the case of the task manager, the exit code is set to 1, but I don't know if it's documented anywhere.
是的,它将返回非零返回代码,该代码将包装在
%ERRORLEVEL%
变量中。Yes, it will return non-zero return code which will be wrapped in
%ERRORLEVEL%
variable.