Questions tagged [bsod]

The Blue Screen of Death (also called BSoD, Blue Screen, or bluescreen) is the error screen displayed by the Microsoft Windows family of operating systems upon encountering a critical error, of a non-recoverable nature.

A Blue Screen of Death, abbreviated as BSOD, and officially called a Stop Error or Stop code in Microsoft, is a diagnostic screen characteristic of Microsoft Windows operating systems upon encountering a fatal critical error such that your computer can no longer operate safely. The only safe action in response to a BSOD is that you need to restart your computer.

A BSOD includes text indicates that a fatal problem has occurred on your PC, and that it can no longer operate safely without restarting. Information about a stop code is provided, either as a symbolic name (such as "CRITICAL_PROCESS_DIED") or a 8-digit hexadecimal error code (in this case, 0x000000EF). The below image depicts a sample Windows 10 BSOD with its sad emoticon and its stop code of "CRITICAL_PROCESS_DIED".

A BSOD in Windows 10, from the Wikipedia article

Blue Screen of Deaths and similar diagnostic screens (such as Black Screen of Death, Red Screen of Death, etc) are also used for similar reasons in other operating systems.

Official Microsoft link to BSOD Stop Codes: https://support.microsoft.com/en-gb/help/14238/windows-10-troubleshoot-blue-screen-errors

Wikipedia article: https://en.wikipedia.org/wiki/Blue_Screen_of_Death

158 questions
45
votes
6 answers

CRITICAL_STRUCTURE_CORRUPTION BSOD Windows 8.1 with Intel HAXM Android Emulator installed

I've had frequent "Critical Structure Corruption" BSODs ever since installing Windows 8.1. I even bought a new computer thinking it was just Windows 8.1 being more sensitive to a potential hardware fault. But the BSODs kept coming in thick and fast…
Pork 'n' Bunny
  • 6,740
  • 5
  • 25
  • 32
21
votes
7 answers

programmatically trigger BSOD

Purely for academic reasons. is it possible to programmatically cause a BSOD to occur under windows xp/windows 7 in C#/.NET. I'm suggesting there's got to be some dirty hack, or some vulnerability to abuse to cause this. I'm looking for a snippet…
Raynos
  • 166,823
  • 56
  • 351
  • 396
20
votes
11 answers

Invoke Blue Screen of Death using Managed Code

Just curious here: is it possible to invoke a Windows Blue Screen of Death using .net managed code under Windows XP/Vista? And if it is possible, what could the example code be? Just for the record, this is not for any malicious purpose, I am just…
Matthew Ruston
  • 4,282
  • 7
  • 38
  • 47
9
votes
8 answers

Simulating a BlueScreen

I am trying to make a program that records a whole bunch of things periodically. The specific reason is that if it bluescreens, a developer can go back and check a lot of the environment and see what was going on around that time. My problem, is…
dafis
9
votes
8 answers

Can a simple program be responsible for a BSOD?

I've got a customer who told me that my program (simple user-land program, not a driver) is crashing his system with a Blue Screen Of Death (BSOD). He says he has never encountered that with other program and that he can reproduce it easily with…
math
  • 2,811
  • 3
  • 24
  • 29
9
votes
2 answers

How do I analyse a BSOD and the error information it will provide me?

Well, fortunately I haven't written many applications that cause a BSOD but I just wonder about the usefullness of the information on this screen. Does it contain any useful information that could help me to find the error in my code? If so, what do…
Wim ten Brink
  • 25,901
  • 20
  • 83
  • 149
8
votes
7 answers

make a windows 7 machine crash on BSOD

I'm trying to write a windows debug utility and I would need to automatically crash a Windows machine and make a Blue Screen Of Death appear. I can obviously kill the csrss.exe process from the task manager, but the command TASKKILL /F /IM…
TheSENDER
  • 175
  • 1
  • 1
  • 3
7
votes
10 answers

Create BSOD from user mode?

I was getting bored with my XP box one day, so I decided to try some of the answers to this question to see if any of them would cause a BSOD. They didn't, and they seemed like they would be the most likely to do that, so I was wondering if it is…
Nate Koppenhaver
  • 1,676
  • 3
  • 21
  • 31
7
votes
0 answers

Why Slack is causing Windows 10 BSOD?

I have experienced BSOD every time I have resumed laptop from sleep. I have analyzed the minidump using WinDbg and the causing processes is always Slack.exe. I have googled a bit I have found…
TN.
  • 18,874
  • 30
  • 99
  • 157
7
votes
5 answers

"Symbols can not be loaded" when trying to read dump

I have an application that sometimes causes a BSOD on a Win XP machine. Trying to find out more, I loaded up the resulting *.dmp file (from C:\Windows\Minidump), but get this message when in much of the readout when doing…
C
6
votes
2 answers

Why does this iframe tag causes Safari on x64 Windows to crash?

In case you have not heard this piece of code will cause a BSoD crash on x64 bit Windows 7 when ran in Safari So naturally the question is how exactly does it happen, and why 18082563 and not say "1808256 4" ?
Egor Pavlikhin
  • 17,503
  • 16
  • 61
  • 99
6
votes
1 answer

Windows bug check callback not called on 64 bit systems

We have ported our driver successfully to 64 bit systems a while ago. But one thing is missing, which is not very important but it was a very handy debugging feature. The callbacks registered with KeRegisterBugCheckReasonCallback is never called.…
ConfusedSushi
  • 874
  • 8
  • 16
6
votes
3 answers

how to get memory dump after blue screen

I'm getting a lovely BSOD on bootup (STOP: 0x0000007E) from a driver I'm writing, and would like to load up the memory dump for analysis. However, it's not getting dumped anywhere. Everything is setup correctly in the Startup and Recovery…
user464164
  • 169
  • 1
  • 8
5
votes
2 answers

Android Studio BSOD when running virtual device

When I attempt to start a virtual device the laptop crashes and I get a BSOD with the error: IRQL_NOT_LESS_OR_EQUAL. I opened up the crash log and I found the culprit to be: MODULE_NAME: IntelHaxm IMAGE_NAME: …
Sushil Kattel
  • 51
  • 1
  • 2
5
votes
1 answer

Search strings in a large MEMORY.DMP file

How can I search a string in a large MEMORY.DMP file generated by Windows BSOD (Windows 8.1 64 bit)? On 32-bit Windows, the command s -a 0 ffffffff "my pattern" seems to work. But for 64-bit windows, s -a 0 ffffffff`ffffffff "my pattern" takes…
murali
  • 59
  • 1
  • 4
1
2 3
10 11