An unstable or malicious kernel driver.
What gives it awayRepeated crashes with the same stop code shortly after unfamiliar software was installed, particularly where the dump names a driver you do not recognise.
ATT&CK T1547.006Nothing matches that yet. Tell us what you were looking for and it goes on the list.
Windows System Log · Event 1001
The machine blue-screened and Windows wrote down the stop code afterwards. The bugcheck code in this event is the single most useful piece of information about a crash, because it names the class of fault — and it points at a dump file that names the culprit.
Also written as 1001Event ID 1001BugCheckBugCheck 1001blue screen event id
This is the record of a blue screen. The long code in the middle is the important part — search for that exact code rather than for the event number. One crash after a driver update is common; crashes every few days mean something needs fixing, usually a driver or failing memory.
Note the provider: this is WER-SystemErrorReporting in the System log, distinct from Application Error 1000 and from Windows Error Reporting's own 1001 in the Application log. Confirm the provider before writing a rule. The dump path in the message is what actually resolves the crash — analyse it rather than guessing from the stop code alone.
Sanitised. Addresses come from the RFC 5737 documentation ranges.
The computer has rebooted from a bugcheck. The bugcheck was: 0x00000133 (0x0000000000000001, 0x0000000000001e00, 0xfffff80000000000, 0x0000000000000000). A dump was saved in: C:\Windows\MEMORY.DMP. Report Id: 0a1b2c3d-0000-0000-0000-00000000abcd. Everything else in the log line is context.
0x0000000aIRQL_NOT_LESS_OR_EQUAL — a driver accessed memory it should not have. Almost always a driver fault. 0x0000001eKMODE_EXCEPTION_NOT_HANDLED — a kernel-mode component threw an error nothing caught. 0x00000050PAGE_FAULT_IN_NONPAGED_AREA — commonly failing memory, sometimes a driver. 0x0000007eSYSTEM_THREAD_EXCEPTION_NOT_HANDLED — usually a driver, and the message often names the file. 0x00000133DPC_WATCHDOG_VIOLATION — a driver held the processor too long. Storage drivers are a frequent cause. 0x00000124WHEA_UNCORRECTABLE_ERROR — the hardware itself reported an unrecoverable fault. This one genuinely means hardware. 0x000000efCRITICAL_PROCESS_DIED — a process Windows cannot run without stopped. 0x0000009fDRIVER_POWER_STATE_FAILURE — a driver failed to handle sleep or wake correctly. Most of the time it is one of these.
What gives it awayRepeated crashes with the same stop code shortly after unfamiliar software was installed, particularly where the dump names a driver you do not recognise.
ATT&CK T1547.006What gives it awayCrashes clustered around attempts to load or unload drivers, or coinciding with security software failing to start.
ATT&CK T1562.001Get-WinEvent -FilterHashtable @{LogName='System'; ProviderName='Microsoft-Windows-WER-SystemErrorReporting'; Id=1001} -MaxEvents 20 | Select-Object TimeCreated, Message | Format-List Get-ChildItem C:\Windows\Minidump -ErrorAction SilentlyContinue | Sort-Object LastWriteTime -Descending | Select-Object Name, LastWriteTime, Length wevtutil qe System /q:"*[System[(EventID=1001)]]" /f:text /c:10 /rd:true Open the dump file named in the event — normally C:\Windows\MEMORY.DMP or a file in C:\Windows\Minidump. A dump reader or the Windows debugger will name the faulting module, which is the answer. The stop code alone narrows the class of problem but rarely identifies the specific driver.
DPC_WATCHDOG_VIOLATION. A driver held the processor for longer than Windows permits, so Windows stopped the machine rather than letting it hang. Storage and chipset drivers are the usual cause, and an outdated solid-state drive firmware is a classic source of this particular code.
Usually because dump creation is turned off, the paging file is too small or on the wrong drive, or free disk space ran out. Check System Properties, Advanced, Startup and Recovery and set it to write at least a small memory dump — otherwise the next crash will be just as opaque as this one.
Only when the provider is Microsoft-Windows-WER-SystemErrorReporting in the System log. Windows Error Reporting writes an unrelated Event 1001 into the Application log for ordinary application faults. Always check the provider before assuming which one you are looking at.
Last reviewed 28 August 2026