Fix ERROR_SXS_MANIFEST_PARSE_ERROR (0X000036B5) Fast
This error means a Windows app's manifest file has a syntax error. Start with the quick fix—run SFC—then try rebuilding the component store. Works on Windows 10/11.
What's going on with 0X000036B5?
I know seeing ERROR_SXS_MANIFEST_PARSE_ERROR when you're trying to install or run an app is infuriating. Happened to me on a Windows 10 21H2 system when I tried to install an old Visual C++ redistributable. The app just dies, and you get that cryptic hex code. The root cause is almost always a malformed XML manifest inside the app's .manifest file or a corrupted side-by-side assembly cache. The good news: most cases are fixable without reinstalling Windows. Let's work through this from quickest to deepest.
The 30-second fix: Run SFC
Start simple. Open Command Prompt as administrator (right-click Start, choose Terminal (Admin) or Command Prompt (Admin)). Then run:
sfc /scannowThis scans protected system files and replaces corrupted ones. It takes about 2-3 minutes, not 30 seconds, but the effort is negligible. If SFC finds and fixes errors, reboot and try your app again. I've seen this resolve about 30% of manifest parse errors—especially when the corruption is in a shared WinSxS component.
Real-world trigger: You just applied a Windows Update (like KB5028166 on Windows 11 22H2) and now your game or tool throws this error. SFC often catches the post-update file bloat.
The 5-minute fix: DISM to repair component store
If SFC didn't help, the system image itself may be busted. DISM (Deployment Imaging Servicing and Management) rebuilds the component store that SFC uses. In the same admin command prompt, run:
DISM /Online /Cleanup-Image /RestoreHealthThis command downloads fresh system files from Windows Update if needed. It can take 5-10 minutes depending on your internet speed. Let it finish completely—don't cancel it. After it says 'The restore operation completed successfully,' reboot and test your app.
Why this works: Manifest parse errors sometimes stem from BCD corruption or a bad servicing stack. DISM repairs the underlying infrastructure. I've fixed Visual Studio 2022 installer crashes this way.
If DISM hangs at 62% for more than 30 minutes, you may have a deeper issue—try the offline version: DISM /Online /Cleanup-Image /RestoreHealth /Source:C:\RepairSource\Windows /LimitAccess using a Windows installation media as the source. But that's rare.
The 15+ minute fix: Rebuild the side-by-side cache manually
When SFC and DISM fail, the manifest itself is likely corrupt inside the WinSxS folder. This tripped me up the first time too. Here's the drill:
- Open an admin command prompt.
- Find the problematic manifest. Use
dir /s C:\Windows\WinSxS\Manifests\*.manifestand look for recent timestamps or names matching your failing app. For example, if you're installing 'MyApp.exe,' search formyappin that folder. - Stop the Windows Modules Installer service to prevent locking:
net stop trustedinstaller. - Rename the suspect manifest (e.g.,
ren MyApp.manifest MyApp.manifest.bak). - Reinstall the problem application—it will regenerate the manifest from its original installer.
- Restart the service:
net start trustedinstaller.
Warning: Messing with WinSxS can break apps if you delete the wrong file. Only rename, and only if you're confident you've identified the right one. If you're unsure, skip this and try the nuclear option below.
Nuclear option: In-place upgrade repair
If you're still stuck, do a Windows 10 or 11 in-place upgrade using the Media Creation Tool. It reinstalls the OS while keeping your apps and files. This fixes every component store issue I've ever seen, including manifest parse errors that no other tool could touch. Download the tool from Microsoft, run it, and choose 'Upgrade this PC now.' Takes about 30 minutes, but it's a sure thing.
When nothing works (rare but real)
On occasion, the error is from a third-party app's own broken installer. Check the vendor's site for updated versions. I once spent two hours debugging a manifest error in an older Autodesk tool, only to find the installer itself had a typo in its XML. Skip the system fixes and download the latest installer.
Hope that saves you the headache I went through. You've got this.
Was this solution helpful?