0x426-0x0

Word 2019 Error 0x426-0x0 After Office Update: Real Fixes

Word 2019 won't open after an Office update, showing 0x426-0x0. It's almost always a broken Click-to-Run install or a conflicting add-in. Here's how to fix it fast.

You installed an Office update, rebooted, double-clicked a .docx, and Word 2019 slammed the door with 0x426-0x0. No document opens. Excel probably still works, which makes it weirder. The error code itself is a Click-to-Run (C2R) activation/registration failure — Office can't verify its own install state, so it refuses to launch the app. The real trigger is that the update left the C2R package database half-committed. A file got replaced, the registry key that points to it didn't, and now Word is trying to load a component that isn't where the manifest says it should be.

What's actually happening here is a mismatch between the installed package manifest and the on-disk files. Windows Installer (msiexec) and the Office C2R service both think they own the install, and they're arguing. You don't need to reinstall Windows. You don't need to run SFC (skip it — it almost never helps with C2R). You need to get those two back in sync. Here's the flow, simplest first.

Step 1: The 30-second fix — kill the stuck C2R service and retry

Before you touch repairs, rule out the obvious: a stuck Office Click-to-Run service that's holding a lock from the failed update. This happens constantly on Windows 10 21H2 and Windows 11 22H2 when the update ran during a shutdown without a clean reboot.

  1. Close every Office app. Check Task Manager — kill any lingering WINWORD.EXE or OfficeClickToRun.exe.
  2. Open an elevated Command Prompt (right-click, Run as administrator).
  3. Stop the two services that hold the install lock:
net stop ClickToRunSvc
net stop OfficeSvc

If you get "service name is invalid" on OfficeSvc, that's fine — it doesn't exist on every build. The one that matters is ClickToRunSvc.

  1. Reboot. Not shutdown-and-power-on — an actual restart. Windows 10/11 Fast Startup skips the service teardown on shutdown, which is why a full restart fixes things a shutdown doesn't.
  2. Open Word again.

If Word opens, you're done. If it still throws 0x426-0x0, the manifest is genuinely broken and you need Step 2.

Step 2: The 5-minute fix — Online Repair

The Quick Repair option in Office's own repair tool is useless here. Quick Repair only rewrites registry entries. Your problem is on disk, so you need Online Repair, which re-downloads and re-registers the entire package. It takes 5–10 minutes on decent broadband and it fixes 0x426-0x0 in the large majority of cases.

  1. Open Settings → Apps → Apps & features (or Control Panel → Programs and Features on older builds).
  2. Find Microsoft Office Home and Business 2019 (or whichever 2019 SKU you're on). Click it, then Modify.
  3. When the UAC prompt appears, choose Yes.
  4. Select Online Repair, not Quick Repair. Click Repair.
If the repair wizard itself crashes or hangs at "Preparing to repair," reboot into Safe Mode with Networking and run it there. The wizard has a known issue on machines with third-party AV that hooks the MSI service.

Let it finish. Don't touch the machine. When it's done, launch Word. If the error is gone, stop reading.

Step 3: The 15-minute fix — Safe Mode, then clean reinstall

If Online Repair completes but Word still fails with 0x426-0x0, you have one of two problems: a third-party add-in is crashing Word during startup, or the C2R package itself is beyond what Online Repair can rebuild. Test both here.

3a. Rule out add-ins (2 minutes)

Hold Ctrl and launch Word from the Start menu. Keep holding until you see "Safe Mode" in the title bar. If Word opens in Safe Mode, an add-in is the culprit — the update changed the add-in loading order and something in your startup folder can't register.

Close Word. Open it normally, then go to File → Options → Add-ins. At the bottom, set Manage to COM Add-ins and click Go. Uncheck everything. Restart Word normally. If it opens, re-enable add-ins one at a time until it breaks — that's your offender. Common ones that cause this exact error: older Adobe Acrobat PDFMaker, Kofax Power PDF, and any add-in built for Office 2016 that hasn't been updated for the 2019 C2R model.

3b. Full clean uninstall and reinstall (15 minutes)

Skip the Control Panel uninstall. It leaves the C2R manifest behind, which is exactly what you're trying to kill. Use the Microsoft Support and Recovery Assistant (SaRA) or the manual scrub:

  1. Download the Office uninstall support tool from Microsoft (search "SaRA Office uninstall"). Run it and pick your Office 2019 SKU.
  2. When it finishes, manually delete these leftover folders:
%ProgramFiles%\Microsoft Office
%ProgramFiles(x86)%\Microsoft Office
%ProgramData%\Microsoft\Office
%LocalAppData%\Microsoft\Office
  1. Reboot.
  2. Sign in to account.microsoft.com/services and re-download your Office 2019 installer. If you have a volume license, grab it from the VLSC instead — don't try to reuse an old installer ISO, the bootstrapper won't match your current channel.
  3. Run the installer. When it asks, choose your existing product key or sign in with the account that owns the license.

After reinstall, Word should open. If it still throws 0x426-0x0 on a fresh install, the problem isn't Office — it's the Windows licensing stack. Run slmgr /dlv in an elevated prompt and check that Windows itself reports a valid license. A corrupted Windows activation state will block Office C2R from completing its own activation handshake, and you'll chase the wrong error for hours.

Why this error specifically shows up after updates

Office 2019 uses a streaming C2R install. Updates are delta patches applied to the package manifest, not full file replacements. When a patch fails mid-stream — usually because the machine lost network or the update ran during a forced shutdown — the manifest records "new version" while the binary files stay at the old version. Word loads, checks the manifest, looks for a file that isn't there, and bails with 0x426-0x0. That's the whole story. Online Repair forces a full manifest rebuild, which is why it works when nothing else does.

One last thing: if you're on a managed machine and Group Policy is pushing updates from an internal WSUS server, the update that broke Word may still be queued to reapply. Check HKLM\SOFTWARE\Policies\Microsoft\Office\16.0\Common\OfficeUpdate before you waste a repair — if the policy is still pointing at a bad package, you'll fix Word and it'll break again after the next reboot.

Related Errors in Software – Microsoft Office
Word Keeps Crashing on Save: How to Fix It Fast Outlook Search Broken After Windows Update: Rebuild Index Word crashes opening document with large images? Fix it in 3 steps Cannot start Microsoft Outlook. Cannot open the Outlook window. Outlook 'Cannot start' error on new profile – fix in 3 steps

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.