A desktop application on a Windows workstation freezes unexpectedly during startup. As a CompTIA A+ technician, in what order should you execute the following troubleshooting steps to isolate the root cause and remediate the application crash?
- 1Open Event Viewer and check the Application log for Event ID 1002 or Event ID 1000 entries related to the crash.
- 2Open Resource Monitor and run the Analyze Wait Chain utility on the unresponsive application process.
- 3End the specific blocking process thread identified in the wait chain tree.
- 4Execute sfc /scannow from an elevated Command Prompt to inspect and repair damaged system dependencies.
Answer
The correct troubleshooting sequence begins with analyzing Event Viewer logs (Event ID 1002/1000), using Resource Monitor's Analyze Wait Chain feature to identify blocking threads, terminating the blocking process, and performing a system file repair using sfc /scannow.
CompTIA A+ troubleshooting protocol requires collecting diagnostic evidence prior to making system modifications. The technician first checks Event Viewer Application logs for Event ID 1000 (Application Error) or 1002 (Application Hang) to confirm the faulting module. Next, Resource Monitor's Analyze Wait Chain feature is used to pinpoint the exact thread or child process causing the freeze. The blocking process is then terminated to resolve the active deadlock. Finally, System File Checker (sfc /scannow) is executed to repair any underlying system file corruption.
Step-by-Step Solution
Key Concept
Sequencing diagnostic and remediation steps for application hangs in Windows using Event Viewer, Resource Monitor Wait Chain analysis, and System File Checker.