Tech use cases · PC troubleshooting
Read a Windows event log entry and explain it
The scenario
Help desk technicians spend a lot of time staring at Windows Event Viewer entries that read like they were written for the machine, not the human. AI is unusually good at unpacking these into one-paragraph explanations a junior technician can act on. The trick is to give it the full event entry, including the source and event ID, so it can pattern-match correctly.
The prompt
You are helping a junior help desk technician understand a Windows event log entry. I will paste the event. Walk through it. Format: 1. One sentence in plain English: what is this event saying. 2. The severity in real terms: is this routine, worth investigating, or urgent. Justify in one sentence. 3. The most likely root causes, ranked, with one sentence each. Maximum three. 4. The single first thing the technician should check, with the exact menu path or command on Windows 11. 5. When this event would be a sign of something more serious (for example, a malware indicator, a failing disk, a kernel-level issue) and would justify escalating to a senior or to security. Rules: - Do not invent context not in the event. - If the event ID is one you do not recognize, say so. Do not make up a definition. - Be specific. "Check Event Viewer" is useless. "Open Event Viewer, expand Windows Logs > System, filter by Source = disk" is useful. - Plain language. Acronyms get one short definition the first time. Event: Log Name: System Source: disk Event ID: 153 Level: Warning Description: The IO operation at logical block address 0x1a2b3c4d for Disk 1 (PDO name: \\Device\\Harddisk1\\DR1) was retried.
The output
What this event is saying, in one sentence.
Windows tried to read or write a specific block on Disk 1, the operation did not complete on the first try, and the operating system retried it successfully. (LBA = Logical Block Address, the location on the disk.)
Severity, in real terms.
Worth investigating, not urgent. A single Event ID 153 in isolation is often benign, a transient hiccup the storage stack handled. The real signal is the rate. If you are seeing dozens of these in an hour, especially on the same LBA, the drive is starting to fail.
Most likely root causes, ranked.
- Loose or worn cable / connector. The most common and the cheapest to rule out. SATA cables fail. SATA ports fail. Reseat first.
- A drive starting to fail. Reallocated sectors, weakening NAND on an SSD, or an aging spinning drive. Confirmed with a SMART check, not by Event Viewer alone.
- Driver or firmware issue. Less common, but storage controller drivers and NVMe firmware do produce retry events under certain conditions. Check vendor support pages.
First thing to check.
Open Event Viewer (Win+R, type eventvwr.msc), expand Windows Logs > System, click Filter Current Log… in the right pane, set Event Sources to disk, and click OK. Count how many Event ID 153 entries appear in the past 7 days. If it is more than five and they target the same disk, run a SMART check next:
wmic diskdrive get model,serialnumber,status
(or use CrystalDiskInfo for a friendlier view of the SMART attributes).
When this becomes serious.
- The same LBA shows up repeatedly. That is a bad sector that is no longer responding cleanly.
- Event ID 153 is followed by Event ID 7 (bad block) or Event ID 51 (paging error). That sequence escalates quickly.
- SMART reports any of: Reallocated_Sector_Ct rising, Current_Pending_Sector > 0, Uncorrectable_Sector_Ct > 0. Any of these means the drive is dying. Back up first, replace second.
- The user has reported intermittent crashes, slow file operations, or a recent BSOD. The 153 events combined with crash reports point to imminent drive failure.
If any of those, escalate to bench, document the SMART output in the ticket, and confirm the user’s data is backed up before the drive is touched.
One reasonable answer. Your run may differ. Read it against the scenario before using any of it.
What to watch for
- AI sometimes treats every disk warning as imminent failure. Disk Event ID 153 is real, but the right move is usually 'run a SMART check and decide,' not 'replace the drive today.'
- AI may guess at event IDs it has not seen. If the event ID is unusual, cross-check against Microsoft's documentation before believing the explanation.
- Sanitize before pasting. Real event logs contain device serial numbers, hostnames, user names. Strip these to [device], [hostname], [user] before pasting into a public AI.
- AI cannot read the rest of the surrounding events. Patterns matter, one Event ID 153 once a month is noise, twenty in an hour is a story.