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
3
votes
4 answers

How to install ie9 (Internet Explorer 9) on Windows 7 despite 80092004 error

Unfortunately, for testing purposes I need to use Internet Explorer 9, and I've followed the MS Answers super helpful trouble-shooting guide, and scoured google, and still not managed to install it. Also tried IETester, Utilu IE Collection, Triple…
xxjjnn
  • 14,591
  • 19
  • 61
  • 94
3
votes
1 answer

BugCheck 0xCE: DRIVER_UNLOADED_WITHOUT_CANCELLING_PENDING_OPERATIONS

Doing a kernel-driver and every once in a while upon completing the Driver Close subroutine I'll get this bugcheck code. It seems straightforward as to what exactly is going on, but I'm not sure the most foolproof way to solve it. Is there a way in…
Qix - MONICA WAS MISTREATED
  • 14,451
  • 16
  • 82
  • 145
2
votes
2 answers

Retrieving BSOD text from VM

How would you retrieve the BSOD text from a virtualbox vm?? As the BSOD is text, it should be stored in the VM's memory space somewhere and probably somewhere well defined. I have several VMs that have been configured to stop on blue screens rather…
Bjorn Harpe
  • 374
  • 4
  • 13
2
votes
1 answer

Blue screen of death appears with STOP 0xC2 caused by picadm freeing a cached memory managed region

Picadm is a system driver written by us. We have enabled special pool to make sure the Blue screen happens at the point of corruption. Blue screen happens with following information: * Bugcheck Analysis …
2
votes
2 answers

Directx 11 Bitblt Alternative

I have the following function which I am trying to integrate into my directx 11 application. When I am using directx9 everything works fine but when converting to directx 11 I am getting a blue screen of death error at the Bitblt line (I must be…
M. Laing
  • 1,607
  • 11
  • 25
2
votes
1 answer

IoGetDeviceProperly causes BSOD

I have written a filter driver for hard disks in Windows ( like DiskPerf of DDK ) and I need to get some information about device which my driver is attached to it, for example HardWareID. I use IoGetDeviceProperly inside my IRP_MJ_READ function.…
CoyBit
  • 1,592
  • 1
  • 17
  • 19
2
votes
2 answers

How do I programmatically detect a Blue Screen in VMWare Workstation?

I would like to automatically be able to detect if a BSOD has occurred in a VM (using VMWare Workstation and VIX). I am testing software using all versions of Windows in VMWare and would like to know when a blue screen occurs. Preferrably I would…
Brian T Hannan
  • 3,925
  • 18
  • 56
  • 96
2
votes
2 answers

How does Windows log hardware errors?

Recently got this in my Event Log: A fatal hardware error has occurred. Reported by component: Processor Core Error Source: Machine Check Exception Error Type: Bus/Interconnect Error Processor ID: 1 The question is, How can one design a logging…
wizzard0
  • 1,883
  • 1
  • 15
  • 38
2
votes
2 answers

Windows check for solutions does nothing after BSOD

I have BSODs relatively often on my new computer. I remember, that my old computed was checking for solutions for BSODs and showing me some reports about them, for example, that some driver is guilty or that solution was not found at the time. Now…
Dims
  • 47,675
  • 117
  • 331
  • 600
2
votes
1 answer

WPF/WCF application cause blue screen when PC is undocked

I am trying to solve a blue screen problem. We have a .Net 4.0 WPF PRISM application. One special thing about this application is that it hosts a WCF Service, which we use to communicate with the client (Thinkpad PC, Windows XP). The steps to…
Shiraz Bhaiji
  • 64,065
  • 34
  • 143
  • 252
2
votes
2 answers

Can bad C code cause a Blue Screen of Death?

I am a new coder in c, recently moved over from python, but still like to challenge myself with fairly ambitious projects (like a chess program), and have found that my computer suffers an unusual number of BSODs, both when I am running a program…
Arkleseisure
  • 416
  • 5
  • 19
2
votes
1 answer

Put messages into Win Crash Dump; !dbgprint; DbgPrint; DbgPrintEx

I'm 'debuging' BSOD caused by driver on Win10 machine. I've tried to use DbgPrint() or DbgPrintEx() to put messages in crash dump so they could be accessed by analysing that dump in 'windbg.exe' by calling !dbgprint. I'm getting nothing all the…
user3124812
  • 1,861
  • 3
  • 18
  • 39
2
votes
3 answers

When does a memory dump get written after BSOD?

I have a machine that periodically BSOD's. I have full memory dumps configured. Sometimes, when rebooting AFTER the BSOD, the machine sits on a black screen for several minutes, then finally comes up to windows. My colleague just recently found…
reuscam
  • 1,841
  • 2
  • 18
  • 23
2
votes
0 answers

BSOD when using kmeans algo with jupyter notebook

I'm currently doing a classifer for dog breed old fashioned way, using SIFT descriptor and doing a kmeans to get a bag of visual words. My dataset comes from the Stanford Dogs Dataset which contains approximately 20 000 images. I'm using the sift…
2
votes
0 answers

Logman flush buffers to file periodically

I am troubleshooting NDIS miniport filter driver causing BSOD randomly. I enabled driver verifier for my driver. I am also trying to collect my driver trace logs by logman using the following command - logman create trace myndis -p {MY_GUID} -ct…
Mahesh
  • 34,573
  • 20
  • 89
  • 115
1 2
3
10 11