Questions tagged [blue-screen-of-death]

The "Blue Screen of Death" is a nickname for when the Windows kernel crashes, and the computer displays an error message in white text on a blue background.

The "Blue Screen of Death" is a nickname for when the Windows kernel crashes, and the computer displays an error message in white text on a blue background.

An example "Blue Screen of Death"

21 questions
72
votes
13 answers

Broken branch in git, fatal: your current branch appears to be broken

Here is my case: I was working on one branch. Pushed new commits to the remote. Switched back to the master branch. But suddenly after typing git checkout master command my computer encountered blue screen of death and an unexpected force shut…
Suresh Karia
  • 17,550
  • 18
  • 67
  • 85
12
votes
9 answers

Bluescreen on windows 10 after using android emulator

today after i got an update of avast i could not launch any android emulator anymore (Bluestacks 3 and NOX). When i try to launch an emulator after like 80-90% of the engine loading of the emulator nothing happens then i get a messagge of the…
Franco Asole
  • 123
  • 1
  • 1
  • 4
4
votes
1 answer

C# How to P/Invoke NtRaiseHardError

The following C++ code causes a bluescreen. #include "stdafx.h" #include #include #include #pragma comment(lib, "ntdll.lib") using namespace std; EXTERN_C NTSTATUS NTAPI…
Keine Ahnung
  • 111
  • 2
  • 10
2
votes
0 answers

Computer crashes because of unhandler error in Visual Studio

I've faced some rather strange problem when writing a C# code. I have the following classes: A Node class: class Node { public char value; public Node left; public Node right; public Node(char _value) { value = _value; …
2
votes
2 answers

Emulator causes Windows Blue Screen DRIVER_POWER_STATE_FAILURE

Recently when I launch the android emulator after some minutes it makes the CPU 100%, the fan of laptop starts spinning very high, the PC become unusable for some seconds and after all the Blue Screen pops out with the…
mammadalius
  • 3,263
  • 6
  • 39
  • 47
2
votes
1 answer

Trigger a BSOD on Windows IoT Core device

I am looking for a way to trigger Blue Screen of Death (BSOD) on an IoT Device running Windows 10 IoT Core version. I tried doing some googling around, but any of the guides either do not apply to Windows 10 IoT Core (e.g. forcing it through Ctrl +…
Asunez
  • 2,327
  • 1
  • 23
  • 46
1
vote
0 answers

Selenium causes Blue screen error in Windows 10

I wrote a small script to open the browser in selenium but after executing the script after a few seconds my laptop runs into the bluescreen error My code is from selenium import webdriver from time import * #chrome_options =…
1
vote
3 answers

BlueScreen after Run emulator android studio

When im run android studio, or run emulator for android studio with manually or with cmd, always get bluescreen. it say "your pc ran into problem and needs to restart. we're just collecting some error info, and then we'll restart for you" Stop code:…
1
vote
0 answers

UEFI - EDK2 - Hooking SetVariable results in UNEXCEPTED_KERNEL_MODE_TRAP

I'm coding a UEFI Runtime Driver for Windows which hooks gRT->SetVariable(...) Hooking seems to work fine but whenever I startup a user-mode application and call SetFirmwareEnvironmentVariable(...) it reults in a Bluescreen saying…
s0T7x
  • 69
  • 1
  • 9
1
vote
2 answers

Windows Subsystem for Linux crashing Windows when "git pull" is run

Has anyone else faced this problem? When I try to run git pull in WSL, the system immediately and consistently crashes leading me to the Blue Screen. With the stop code: PAGE FAULT IN NONPAGED AREA I am on Windows 10.
Theja
  • 2,448
  • 3
  • 14
  • 18
1
vote
1 answer

nodejs bluescreen on install

I was about to install node.js on a brand new Windows 7 64bit system. But during the installation I get a bluescreen. It happens while "copying new files". I tried node.js 8.9.4 and 9.5.0, both in 64 bit. Any idea what's wrong? edit: I now enabled…
Sheldon
  • 959
  • 2
  • 9
  • 16
1
vote
2 answers

recovering a git repo after a Windows blue screen?

I just got a blue screen, I have all my work of the last week or so in the stash, but now after that event it is gone... well, I can see the .git folder in explorer but doing git status or fsck it says it is not a git repo... here is a little play…
tyoc213
  • 1,223
  • 18
  • 21
0
votes
0 answers

Visual Studio 2022 closes itself after short time on windows 10

After experiencing a system bluescreen error while optimizing a Visual Studio project, the program stopped working correctly. The project involves connecting a device via USB and retrieving data from it using the device's library as a dll file…
ugrdursun
  • 351
  • 1
  • 4
  • 19
0
votes
0 answers

C++ Code::Blocks program causes blue screen when run from command line

I was using Code::Blocks to try out parallel programming using OpenMP. MinGW compiler included in original Code::Blocks folder didn't support OpenMP, so I downloaded newer version (7.0.0) from Sourceforge and set up the project accordingly (-fopen…
0
votes
1 answer

BlueScreen[Error : 0x0000003b / c0000005] Reading bytes from SerialPort

i have a BarcodeScanner here which im telling to make a picture for me. Im sending a command as byte to the scanner, waiting for the response and then im trying to read it. if i just use a serial monitor and send the bytes manually it works just…
1
2