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.

learn more… | top users | synonyms

-1
votes
0answers
42 views

Why does this javascript cause a blue screen of death?

<!DOCTYPE html> <html> <head> <title></title> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <link ...
-3
votes
0answers
23 views

bsod (Blue screen) resulting on corrupted CSS file [closed]

I was working on dreamweaver, editing my files(html, css), and i was saving them from minute to minute(its like a paranoia i have "crt+s / crt+s / ctr+s...."), and from nowhere BSOF(bluescreen!). ...
0
votes
1answer
15 views

What are the requirements for reports to display in Hardware Dev Center Dashboard?

I have created an account at Microsoft Windows Dev Center - Hardware and signed the Windows Error Reporting Agreement. Then, I have introduced an null-pointer dereference to release signed driver ...
0
votes
0answers
31 views

Could an application causes a BSOD? How to track down the cause?

One liner: BugCheck 50, {fffff8800ca0ec04, 0, fffff88005e18c6a, 2}; PAGE_FAULT_IN_NONPAGED_AREA; mqac.sys; This issue is some kind of reproducible: happened several times in the last months, on 3 ...
0
votes
0answers
18 views

BluescreenView windows dump file [closed]

hello there i have this problem which i only understand that the cause of my BSOD is the "hal.dll" and by further research through the net today i can`t surely find a grip on what is the reason behind ...
0
votes
1answer
43 views

Creating a BSOD with assembly in protected mode

I was looking and couldn't find any quick and easy way to BSOD a computer in assembly. I'm using MASM x86. I'm new at assembly and want to make a version or Russian roulette for computers. Basically ...
0
votes
1answer
59 views

IoVolumeDeviceToDosName craches Windows 7 but works fine on Windows XP

After we have changed kernel driver code from C to C++ IoVolumeDeviceToDosName function's call produces BSOD on Windows 7 but this code still works fine on Windows XP. Can anyone give me a hint ...
2
votes
1answer
89 views

C#, programmatically find any past BSOD's and get the codes

Is there a way to use C#/.NET to find previous BSOD codes (e.g. KERNEL_DATA_INPAGE_ERROR) that have occurred in the past (even if only recent past). I've only seen ways involving applications (for ...
1
vote
0answers
97 views

Any Program with 40+ Layer of Embedded Control Cause Windows 8 Crash

When developing program under windows 8, our team found that if using too many layers of control in an UI program can cause windows Blue Screen Of Death, with error number 0x7f(0x00000008, xxx, ...
0
votes
2answers
96 views

windows xp sp3 bsod - what do numbers in parenthesis mean?

I'm getting a BSOD on my Windows XP SP3 image (running on Workstation 8) all of a sudden. Here is the message: stop: 0x000000D1 (0x00000008, 0x00000002, 0x00000000, 0x8616A7c5) I've tried to debug ...
0
votes
1answer
100 views

Cause system crash in C# [duplicate]

I'd like to write a program that causes a system to crash. I'm running Windows 7 Ultimate 32-bit. I'm lookinf to do something that will force a system reset. I found the C-ScrLk C-ScrLk method, but I ...
0
votes
0answers
156 views

BSOD when using BackgroundWorker

I posted a very similar question a few weeks ago, but I did not give enough details, and I was pulled away to other tasks and couldn't get to it. I hope to remedy that here. I have a form with a ...
0
votes
2answers
3k views

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. ...
0
votes
2answers
300 views

Blue Screen of Death caused by Quad Tree Program

I am writing a Quad tree structure for a planet, that decreases and in increases in detail when you are far away from the quad and close to it receptively. However, I am running into some really ...
-2
votes
1answer
204 views

Recovery of SSH session after system crash [closed]

I was editing a file over SSH when my computer crashed and I got the BSOD. I was SSHing through Putty. I would really like to recover if possible. I don't know if there is anyway to restore the SSH ...
2
votes
1answer
254 views

BSOD Error Code Explanation

I am retrieving system failure information from the event logs for diagnosis of system crash and displaying a list of possible issues. In a generic BSOD, what do the four hex values in brackets ...
0
votes
2answers
193 views

Analyzing BSOD without a dump [closed]

One of the drivers I'm developing has caused a BSOD. Unfortunately a dump file was not created since it was not configured / low resources. I was trying to reproduce this crash but no luck so far. Is ...
1
vote
0answers
136 views

Is there a way in windows to throw a BSOD on demand from python?

I am making a script to test some software that is always running and I want to test it's recovery from a BSOD. Is there a way to throw a bsod from python without calling an external script or ...
0
votes
1answer
156 views

Automatic reboot after a BSOD

How can I make Windows 7 x64 to reboot automatically after a BSOD? There is a well-known "Automatically restart" option in the system properties -> Advanced -> Startup and recovery, but it seems it ...
0
votes
1answer
111 views

Kernel driver check if memory is mapped (BugCheck 0xC2)

This seems like such a simple issue but I cannot find an elegant solution. I've traced my driver down to a call to MmUnmapIoSpace, which produces a BugCheck 0xC2 {7,,,} message. Is there a way to ...
3
votes
1answer
193 views

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 ...
1
vote
1answer
353 views

Windows Driver BugCheck 7E On driver load

This one is stumping me. My driver works perfectly fine in all of the guest virtual systems (Windows xp/7 both x86 and x64), as well as a few certain hosts. However, on my PC I'm receiving a 0x7E ...
0
votes
0answers
182 views

WorkItem (IoQueueWorkItem) gives BSOD with error “PAGE_FAULT_IN_NONPAGED_AREA”

I'm using Windows 7 64 bit. WorkItem (IoQueueWorkItem) gives BSOD with error "PAGE_FAULT_IN_NONPAGED_AREA" I'm freeing allocated memory too ... no idea what's wrong :( This is my driver code: ...
2
votes
2answers
305 views

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 ...
0
votes
2answers
297 views

BSOD/Windows XP/minidump file/Norton 360?

My Dell Precision T5400 just started crashing once a day, at approximately the same time. I called Dell, they weren't helpful, told me to reinstall video drivers, which I did. (just because they ...
3
votes
1answer
2k views

calling socket bind results in Windows bluescreen

We discovered that running our application under certain conditions results in Windows bluescreen. After some investigation we were able to narrow down the scenario to a sample of ~50 lines of C code ...
1
vote
1answer
359 views

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 ...
1
vote
2answers
551 views

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 ...
0
votes
1answer
384 views

Directx 11 Blue Screen of Death when Running my Program

I'm trying to use the following code: HRESULT hResult; HDC hDC; IDXGISurface1 *pSurface = NULL; hResult = m_flashTexture->QueryInterface(__uuidof(IDXGISurface1), (void**)&pSurface); hResult ...
0
votes
5answers
182 views

Can a BSOD be reliably detected after rebooting into another OS?

I need to detect a reboot caused by BSOD in a different OS. Can such a situation be traced? Is a memory dump enough for it? Windows 7 displays a nice dialog that a system has recovered from a serious ...
1
vote
0answers
44 views

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 ...
0
votes
1answer
239 views

Reading RAM data from particular location using Driver?

i am trying to read RAM data from 0x00000001 and copy it to a file in hard disk (just learning!) so i wrote this and compiled and ran it #include <ntddk.h> void ...
3
votes
3answers
1k views

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 <iframe height='18082563'></iframe> So naturally the question is how ...
0
votes
1answer
365 views

SerialPort: App causes Blue Screen on disconnecting device while it transfers data

I working on a solution for device with Serial Port (with USB bridge). Everything is ok except the thing it causes Blue Screen on disconnecting device durin data transfer. And my app doesn't catch any ...
2
votes
2answers
266 views

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 ...
1
vote
0answers
193 views

Saving Visual Studio Settings During Debug in Case of BSOD

Is it possible to make Visual Studio save its settings (window positions, etc) at the beginning of a debug session? The project I'm currently working on has the unfortunate property of bluescreening ...
1
vote
2answers
595 views

How does Windows log hardware errors? [closed]

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 ...
1
vote
2answers
1k views

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 ...
2
votes
1answer
514 views

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 ...
3
votes
3answers
423 views

Debugging/bypassing BSOD without source code

Hello and good day to you. Need a bit of assitance here: Situation: I have an obscure DirectX 9 application (name and application details are irrelevant to the question) that causes blue screen ...
2
votes
3answers
5k views

C# Simulate Key Press

I was looking for a way to simulate pressing the right Ctrl key in C#, it must be the right one. I know this can be done for the left one but I couldn't find anything on the right one. It is so I can ...
0
votes
6answers
1k views

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 ...
4
votes
2answers
338 views

Delphi 2010 BSOD Errors

We ported an application from Delphi 7 over to Delphi 2010 and have had customers encountering intermittent BSOD (blue screen of death) errors while running under Windows XP. The errors are very ...
1
vote
3answers
298 views

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 ...
6
votes
1answer
198 views

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 ...
0
votes
2answers
169 views

Detect BSOD on Windows

Is there any way to detect if a BSOD has just occurred(before the OS shutdowns)? Thanks,
0
votes
1answer
929 views

Dreamweaver CS5.5 BSOD (Blue Screen of Death) help?

I just finished downloading and installing the trial version of the Adobe Dreamweaver CS5.5 but for some reason, whenever I try to run it, I get a BSOD or Blue Screen of Death. I'm pretty sure I meet ...
1
vote
1answer
233 views

Debugging a 3rd-party driver with pdb and no source

I have a disk image that runs well, and has thousands of hours of run-time with no reported blue screens. I set up a reboot loop and didn't see a blue screen after a few dozen cycles. I installed a ...
15
votes
4answers
2k views

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 ...
1
vote
3answers
2k views

force a blue screen (from a simple driver bug?) in C code [duplicate]

Possible Duplicate: Simulating a BlueScreen Hello SO, I'm trying to induce a BSOD somehow inline in my C code. My main background is Java but have been fortunate to have been tutored by ...

1 2