在 Windows 上检测 BSOD
有什么方法可以检测 BSOD 是否刚刚发生(在操作系统关闭之前)?
谢谢,
Is there any way to detect if a BSOD has just occurred(before the OS shutdowns)?
Thanks,
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
内核为驱动程序提供了有限的功能,可通过 KeRegisterBugCheckCallback。在回调例程中,您可以尝试正常关闭应用程序等。但是,鉴于系统正在进行错误检查,大多数功能将不可用。
The kernel provides limited functionality for drivers to be informed of a bugcheck (i.e., BSOD) via KeRegisterBugCheckCallback. In the callback routine, you can attempt a graceful shutdown of your applications, etc. However, given that the system is bugchecking, most functionality will not be available.
据我所知。 BSOD通常意味着硬件故障,导致计算机无法工作/运行。
如果您遇到过一次 BSOD,明智的做法是调查报告文档,因为 BSOD 最有可能再次出现。
最常见的原因是驱动程序不是最新的或内存故障。我还见过硬盘导致 BSOD。
Not to my knowledge. A BSOD usually means a hardware malfunction which results in the computer not being able to work/run.
If you have experienced one BSOD it would be wise to investigate the report document as the BSOD is most likely to return.
Most frequent causes are drivers not being up to date or memory malfunction. I have also seen hard drives cause BSODs.