A crash caused by unstable or malicious kernel-level software.
What gives it awayRepeated Event 41 with a non-zero bugcheck code, particularly shortly after new software or a driver was installed.
ATT&CK T1499Nothing matches that yet. Tell us what you were looking for and it goes on the list.
Windows System Log · Event 41
Windows noticed on startup that the previous shutdown never happened properly — the machine lost power, froze, or crashed. The event records the aftermath, not the cause, which is why it so rarely explains anything by itself.
Also written as Event ID 41Kernel-Power 41Kernel Power 41 63
Your PC turned off without warning and Windows is telling you it noticed. A single one after a power cut means nothing. Several a week means something is wrong — most often the power supply, overheating, or memory, and much less often software.
On physical hardware, treat it as a hardware or power question. On virtual machines it usually means the host reset the guest, so check the hypervisor rather than the guest. Correlate with BugCheck 1001 to distinguish a stop error from a bare power loss.
Sanitised. Addresses come from the RFC 5737 documentation ranges.
The system has rebooted without cleanly shutting down first. This error could be caused if the system stopped responding, crashed, or lost power unexpectedly.
BugcheckCode: 0
BugcheckParameter1: 0x0
BugcheckParameter2: 0x0
BugcheckParameter3: 0x0
BugcheckParameter4: 0x0
SleepInProgress: 0
PowerButtonTimestamp: 0
BootAppStatus: 0 Everything else in the log line is context.
0No stop error was recorded. The machine lost power or froze rather than crashing in a way Windows could log. 0The power button was not held. Something else caused the shutdown. Most of the time it is one of these.
What gives it awayRepeated Event 41 with a non-zero bugcheck code, particularly shortly after new software or a driver was installed.
ATT&CK T1499What gives it awayRepeated unexplained resets on a machine that is otherwise healthy, clustered in time or coinciding with other suspicious activity.
ATT&CK T1529Get-WinEvent -FilterHashtable @{LogName='System'; Id=41} -MaxEvents 20 | Select-Object TimeCreated, @{n='Bugcheck';e={$_.Properties[1].Value}}, @{n='PowerButton';e={$_.Properties[5].Value}} Get-WinEvent -FilterHashtable @{LogName='System'; StartTime=(Get-Date).AddDays(-7)} | Where-Object { $_.LevelDisplayName -in 'Error','Critical' } | Select-Object TimeCreated, Id, ProviderName, Message | Format-Table -Wrap wevtutil qe System /q:"*[System[(EventID=41)]]" /f:text /c:10 /rd:true Only if it repeats. It means the machine went down without a clean shutdown, which after a power cut or a held power button is entirely expected. Several a week with no obvious cause points at a real hardware problem — usually the power supply, overheating, or failing memory.
There is nothing to fix in the event itself; it is a symptom. Work through the physical causes first — check the power connections, run a memory test, clean out dust and check temperatures, and make sure the power supply is adequate. If the bugcheck code is not zero, chase that stop code instead, because then it is a software or driver crash rather than a power problem.
It means Windows never got as far as recording a stop error. The machine lost power or froze hard rather than crashing in a controlled way. That effectively rules out a normal blue screen and points at power, heat, or hardware.
Because the hypervisor reset or powered off the guest, and from inside the guest that is indistinguishable from pulling the plug. The explanation is in the host's logs, not the virtual machine's — a host restart, a live migration failure, or a resource limit are the usual causes.
Last reviewed 28 August 2026