0X000036F1

Fix 0X000036F1: Manifest Unclosed Section Error

Windows Errors Beginner 👁 1 views 📅 May 27, 2026

Windows throws this error when an XML manifest file has a missing closing tag. Corrupt software installs or bad updates are the usual suspects.

1. Corrupt Application Install – Reinstall the Program

The most common trigger for error 0X000036F1 is a botched software install. You'll usually see it right after installing or updating a program – maybe Adobe Reader, a game like Steam, or even Microsoft Office. The installer writes a manifest file that doesn't have a proper closing tag for an XML element.

Here's what to do:

  1. Press Windows Key + R, type appwiz.cpl, and hit Enter. You'll see the Programs and Features list.
  2. Find the program that's throwing the error. Sort by “Installed On” if you recently updated something – that's your likely culprit.
  3. Right-click the program and select Uninstall. Follow the prompts to remove it completely.
  4. Restart your computer. Don't skip this – Windows needs to clear any leftover file locks.
  5. Download a fresh installer from the program's official website. Don't use an old setup file you have lying around – it might have the same corruption.
  6. Run the installer again. After it finishes, launch the program. You should see the error is gone.

I've seen this fix work about 70% of the time. If it doesn't, move to the next step.

2. Corrupt Windows Side-by-Side (SxS) Cache – Reset the Component Store

Windows stores manifest files in a hidden folder called the SxS cache. If that cache gets corrupted – say from a partial Windows Update install or a disk error – you'll get this error even on programs that used to work fine. The error code 0X000036F1 specifically points to an unclosed XML section, meaning the cached file is malformed.

Run the System File Checker (SFC) first. It's quick and fixes simple corruption:

  1. Open Command Prompt as administrator. Click Start, type cmd, right-click “Command Prompt”, and select “Run as administrator”.
  2. Type sfc /scannow and press Enter. This will scan all protected system files, including the SxS manifests. It takes 10–20 minutes.
  3. When it finishes, you'll see one of three results:
    • “Windows Resource Protection did not find any integrity violations” – SFC found nothing. Run DISM next.
    • “Windows Resource Protection found corrupt files and successfully repaired them” – Great, but still check DISM below.
    • “Windows Resource Protection found corrupt files but was unable to fix some of them” – This happens. DISM can handle what SFC misses.

Now run DISM to repair the SxS store directly:

  1. In the same administrator Command Prompt, type: DISM /Online /Cleanup-Image /RestoreHealth
  2. Press Enter. DISM will connect to Windows Update to fetch clean versions of any corrupted files. If you're offline, it uses a local backup. This can take 20–30 minutes.
  3. After it finishes, restart your computer. Then try the program that gave the error.

If you still see the error after this, the problem isn't system-wide – it's tied to a specific program's manifest.

3. Bad Windows Update – Uninstall the Latest Update

Less common, but I've seen Windows updates themselves ship a faulty manifest. This usually happens after a Patch Tuesday update (the second Tuesday of each month). You might notice error 0X000036F1 popping up on multiple programs at once, not just one.

Here's how to backtrack:

  1. Go to Settings > Windows Update > Update history. Click Uninstall updates at the top.
  2. You'll see a list of installed updates. Sort by “Installed On” so the newest ones are at the top.
  3. Find the most recent update – look for KB numbers like KB5034441. Select it and click Uninstall. Windows will prompt you to restart.
  4. After the restart, check if the error is gone. If it is, pause updates for a few days. Microsoft usually pulls bad updates within a week.

If uninstalling the latest update fixes it, but you don't want to stay unpatched, wait for a new cumulative update that includes the fix. Check the Microsoft Update Catalog for any posts about that KB number.

Quick-Reference Summary

Cause Fix Time Success Rate
Corrupt app install Uninstall and reinstall the program from a fresh download 15–30 min ~70%
Corrupt SxS cache Run SFC /scannow, then DISM /RestoreHealth 30–50 min ~25%
Bad Windows Update Uninstall the latest update from Settings 10–20 min ~5%

Start with the reinstall. It's the fastest and hits the most common cause. If that doesn't cut it, the SFC/DISM combo is your next best bet. The update rollback is a hail Mary, but it works when Microsoft messes up. You won't need all three – one of these will kill that error for good.

Was this solution helpful?