Skip to content
littleden.blogEvidence-led Windows troubleshooting, without the guesswork
Windows command reference

Get-WinEvent — Application Hang

Read recent Application Hang Event ID 1002 records to establish which process hung and when before correlating WER, Reliability Monitor or wait-chain evidence.

Risk: LowReviewed: 2026-09-17
Get-WinEvent -FilterHashtable @{LogName='Application'; Id=1002; StartTime=(Get-Date).AddDays(-7)}

When to use it

Use when a Not responding problem repeats and you need a short event timeline instead of scrolling through the full Application log.

When not to use it

Event ID 1002 identifies a hang record; it does not prove the root cause. Do not clear the Application log during diagnosis.

Primary reference

Reviewed source