11
votes
8answers
1k views
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, …
8
votes
8answers
322 views
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 …
6
votes
7answers
461 views
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 …
3
votes
2answers
54 views
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 …
3
votes
3answers
375 views
How do I know if Windows has just recovered from a BSOD?
From http://support.microsoft.com/kb/317277:
If Windows XP restarts because of a serious error, the Windows Error Reporting tool prompts you...
How can my app know that "Windows XP has restarted …
3
votes
5answers
3k views
Windows MiniDump files — “Symbols can not be loaded” when trying to read with WinDbg
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 …
2
votes
3answers
190 views
Catching the dreaded Blue Screen Of Death…
It's a simple problem. Sometimes Windows will just halt everything and throws a BSOD. Game over, please reboot to play another game. Or whatever. Annoying but not extremely serious...
What I want is …
1
vote
4answers
140 views
Bluescreen of death during Java development on a Leopard - any ideas how to solve this?
I develop using Java 5 and 6 on Intellij IDEA 7 and 9M1. From time to time (during run/compile) my Mac (10.5.7) will die with a Bluescreen of death.
Has anybody else had this issue and somehow …
1
vote
3answers
391 views
Overlapped serial port and Blue Screen of Death…
I created a class that handles serial port asynchronously. I use it to communicate with a modem. I have no idea why, but sometimes, when I close my application, I get the Blue Screen and my computer …
1
vote
4answers
523 views
SerialPort and the BSOD
I've written some C# code that checks whether a device is present on any SerialPort by issuing a command on the port and listening for a reply. When I just set the port speed, open the port, get the …
0
votes
1answer
26 views
Visual Studio 2008, Vista x64 and Kaspersky = blue screens (BSOD) ?
We just got cool new workstations - 8 GB, 24 inches screens, Vista x64 and a lot of power -- I just love it !
But we are facing some really annoying problems : BSODs ! We found out that the instant …
0
votes
2answers
26 views
Are there any tools to read the contents of dump files created during BSoD in Windows?
Are there any tools that would help us read the contents in a Memory Dump files that is created when there is a BSoD?
0
votes
0answers
23 views
Bugcheck analysis - any pointers? [closed]
Here is my bugcheck dump.
Running Vista Home Premium 32-bit SP2
Looks like the issue is with one of the vista drivers ... any ideas how to pin down which driver it is? This is a clean install …
0
votes
1answer
91 views
RAM PerformanceCounter problems
My code:
var list = new LinkedList<int>();
var ramCounter = new PerformanceCounter("Memory", "Available MBytes");
while (true)
{
for(int i = 0; i < 1000 * 1000; i++) list.AddLast(0);
…
0
votes
2answers
118 views
Using HalDisplayString For Custom Blue Screen Of Death
I was reading a while ago somewhere online that you could make a custom BSOD. I don't remember where but I know it had something to with calling HalDisplayString which would switch to the bluescreen …
