Windows System Log · Event 51
Event 51: A paging error on a disk
Windows hit an error while reading or writing the page file area of a drive. It usually means the same thing as a bad block — the storage is not responding reliably — and it is one of the earlier warnings a drive gives before it fails outright.
Also written as Event ID 51
- How oftenUncommon
- Vendor calls itWarning
- LogSystem
- SourceDisk
What it means for you
On a personal computer
Windows had trouble reading from or writing to your drive. Back up your files. If it repeats, the drive is probably failing.
For an analyst
Common on machines with failing drives and on virtual machines experiencing storage latency. On virtualised systems check the datastore and the paths before replacing anything — the guest is reporting a symptom it cannot see the cause of.
What it looks like
Sanitised. Addresses come from the RFC 5737 documentation ranges.
An error was detected on device \Device\Harddisk0\DR0 during a paging operation. The fields that decide it
Everything else in the log line is context.
- Device
- The drive involved, written as \Device\Harddisk0\DR0 or as a volume path.
- Occurrence pattern
- Isolated entries can be transient; bursts during heavy input and output point at a real fault or at storage that cannot keep up.
Ordinary reasons this happens
Most of the time it is one of these.
- Transient errors under very heavy load on a healthy but slow drive.
- Storage latency in a virtual machine, where the guest reports an error the host caused.
- A loose or failing cable.
- An external or removable drive briefly disconnecting.
What to do next
- Back up the data before investigating further.
- Check SMART attributes for reallocated and pending sectors.
- Look for Event 7 and Event 129 around the same time — they usually accompany this.
- On a virtual machine, check storage latency at the host before suspecting the disk.
- Reseat or replace the cable if the drive is otherwise healthy.
- If the errors coincide with heavy load only, consider whether the storage is simply overwhelmed.
Queries to run
Get-WinEvent -FilterHashtable @{LogName='System'; Id=51,7,129} -MaxEvents 100 | Select-Object TimeCreated, Id, ProviderName, Message | Format-List Common questions
Is Event 51 always a failing hard drive?
Not always, but it is the most common explanation. It can also be a loose cable, a failing controller, or — on virtual machines — storage latency at the host that the guest reports as a disk error. Check SMART data first, then the cable, then the storage layer if the machine is virtualised.
What is a paging operation?
Windows moves memory pages between RAM and the page file on disk to manage memory. An error during that operation means the drive did not respond correctly to a read or write, which is why it is treated as a storage problem rather than a memory one.
Read next
- Read alongside Event 7: The device has a bad block Bad block reports on the same drive.
- Read alongside Event 129: A storage controller reset the drive Controller resets, which often accompany paging errors.
- Usually comes after Event 55: NTFS found corruption on a volume File system corruption resulting from unreliable storage.
- Usually comes after Event 41: The system rebooted without shutting down cleanly An unclean shutdown, which storage failure can cause.
Mentioned by
Vendor documentation
Last reviewed 28 August 2026