-
Notifications
You must be signed in to change notification settings - Fork 1.2k
View App Crash Details
ema edited this page Apr 28, 2025
·
1 revision
-
Open Event Viewer:
- Press
Win + R
, typeeventvwr
, and press Enter.
- Press
-
Navigate to Application Logs:
- In the left sidebar:
Windows Logs
→Application
- In the left sidebar:
-
Filter or Find Error Events:
- In the middle pane, look for Error or Critical events.
- You can also use Find... (right-click the Application log → Find) and search for terms like
"QuickLook"
.
-
Look for crash details:
- Source: Often you'll see sources like Application Error, .NET Runtime, Windows Error Reporting.
- Double-click an event to open and view details.
-
Key Information inside the Event:
- Faulting application name: Which app crashed
- Faulting module name: Which DLL or EXE caused the crash
- Exception code: (e.g., 0xc0000005 = Access violation)
- Fault offset: Where in the code it crashed
- Process ID / Thread ID
- Custom View: You can create a Custom View in Event Viewer that only shows crash events.
-
Save Crash Logs: You can right-click a crash event → Save Selected Event to export it as
.evtx
file. -
Windows Reliability Monitor:
Another easier way is open Reliability Monitor:
- Press
Win + R
, typeperfmon /rel
, press Enter. - It gives a visual timeline of crashes and failures, and you can click on a crash to see the Event Log details directly.
- Press