0x800A0A0A

Word Error 0x800A0A0A: Fix 'File Is Corrupt' After Office Update

Word error 0x800A0A0A usually means a broken file association or Protected View lock after an Office update. Re-register Word and disable the block to get documents opening again.

Quick answer: Error 0x800A0A0A is almost always a broken file association or Protected View block introduced by an Office update — re-register Word with winword.exe /r, then unblock the file in Properties, and it opens.

I got a call last Tuesday from a bookkeeper who'd just run her monthly Office updates. Every .docx on her desktop suddenly threw "The file is corrupt and cannot be opened" with that ugly 0x800A0A0A code underneath. She'd already copied files to a USB drive and back, renamed extensions, rebooted twice. Nothing. The files weren't corrupt at all — I opened them fine on my laptop. The patch had scrambled her Word file association and flipped a Protected View policy that locked down anything coming from a network share or downloaded folder. That's the pattern. Microsoft pushes a security update, the COM registration for Word gets half-written, and Word can't validate its own document handler anymore.

So before you start downloading sketchy "Word repair" tools, know this: your document is probably fine. The plumbing is broken. Here's how I fix it, in order.

Step-by-step fix

  1. Close Word and everything Office-related. Check Task Manager for WINWORD.EXE, EXCEL.EXE, and the ClickToRunSvc. If any are hanging, kill them. A stuck Word process will block the registry re-registration in step 3.
  2. Try opening the file in Safe Mode first. Hold Ctrl while launching Word, or run:
    winword.exe /safe
    If it opens there, an add-in is the culprit, not the update itself. Disable add-ins under File > Options > Add-ins and restart normally.
  3. Re-register Word with the /r switch. Open Command Prompt as admin and run:
    "C:\Program Files\Microsoft Office\root\Office16\WINWORD.EXE" /r
    On older installs the path is C:\Program Files (x86)\Microsoft Office\Office16\WINWORD.EXE. This rewrites the file association and the Word-specific registry keys under HKCU\Software\Microsoft\Office\16.0\Word that the update broke. No splash screen, no dialog — it just runs and exits. That's normal.
  4. Unblock the file itself. Right-click the .docx, Properties, and if you see an "Unblock" checkbox near the bottom, tick it. Files copied from email, Teams, or a network share get the Zone.Identifier alternate data stream attached, and Protected View refuses to open them after certain updates. You can batch this with PowerShell:
    Get-ChildItem "C:\Users\You\Documents" -Recurse | Unblock-File
  5. Clear the Office file cache. Word keeps a nasty little cache that can hold onto stale document handlers. Delete everything inside:
    %userprofile%\AppData\Local\Microsoft\Office\16.0\OfficeFileCache
    and
    %userprofile%\AppData\Roaming\Microsoft\Templates\Normal.dotm
    Word rebuilds both on next launch. Rename Normal.dotm instead of deleting if you've got custom styles you want to keep.
  6. Repair the Office install. Settings > Apps > Microsoft 365 > Modify > Quick Repair. Takes two minutes. If that doesn't fix 0x800A0A0A, run Online Repair — it re-downloads the whole suite so plan for 15-30 minutes and a decent connection.

If that doesn't work

Sometimes the update leaves the COM registration for the Word document class in a half-state that /r won't touch. Drop into the registry editor and check these keys exist:

HKEY_CLASSES_ROOT\Word.Document.12\shell\Open\command
(default) = "C:\Program Files\Microsoft Office\root\Office16\WINWORD.EXE" /n "%1"

If the path points at a version folder that no longer exists (I've seen leftover Office15 references after an Office 2016 to 365 upgrade), fix it manually or run the repair again. Also verify HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Office\ClickToRun\Configuration exists — if it's missing, the Click-to-Run service lost its mind and you're better off uninstalling with the Microsoft Support and Recovery Assistant, then reinstalling clean.

For a single document that's genuinely broken, use Word's built-in recovery: File > Open > Browse, select the file, click the arrow next to Open, choose "Open and Repair." And for the love of everything, don't use those free online "repair my docx" sites — you're uploading client data to strangers.

Stop it from happening next time

Pause Office updates for a week after Patch Tuesday. Most of these file-association breakages get caught and hot-fixed within 5-7 days, and you skip the pain entirely. In Word: File > Account > Update Options > Pause Updates. If you manage more than a couple of machines, push the same setting through Group Policy under Computer Configuration > Administrative Templates > Microsoft Office 2016 > Updates. I've had this save entire departments from a Monday morning panic more than once.

One more thing worth doing: turn off Protected View for local files you actually trust. File > Options > Trust Center > Trust Center Settings > Protected View. Uncheck the box for files located in potentially unsafe locations only if you know your folders are clean. Leaving it on for internet-origin files is fine and honestly smart. The network-share one is the one that bites most offices.

Related Errors in Software – Microsoft Office
Outlook.exe – Application Error Outlook 2016 crashes on new email after KB5001330 Excel crashing when pasting from browser? Here's the fix Excel 'We found a problem' Loop? Fix Corrupted xlsx Yourself Word 2016 opens blank document from SharePoint

Was this solution helpful?

EP
Erropedia Team
Tech Support Editors
The Erropedia editorial team researches and documents real-world tech errors from across Windows, Linux, macOS, networking, databases, cloud platforms, and more. Every solution is reviewed for accuracy and updated as software and systems evolve.