How to fix Windows error 0x000036B3
By Sai Kiran Pandrala · reviewed by Sai Kiran Pandrala, Editor Last verified: 2026-05-25
| Error code | 0x000036B3 |
|---|---|
| Decimal | Not assigned |
| Symbolic name | ERROR_SXS_ASSEMBLY_NOT_FOUND |
| Platform | Windows |
| Subsystem | Side-by-side assemblies (WinSxS) |
| Official message | The referenced assembly is not installed on your system. |
| Source | Microsoft MS-ERREF (HRESULT) (https://learn.microsoft.com/en-us/windows/win32/sbscs/about-side-by-side-assemblies) |
What is 0x000036B3?
0x000036B3 (commonly seen as ERROR_SXS_ASSEMBLY_NOT_FOUND) is a status code returned by the Side-by-side assemblies (WinSxS) on Windows. This code comes from the side-by-side runtime, which loads assemblies, manifests, and activation contexts from the WinSxS store. It usually fires during app install, app launch, or COM activation when a manifest references an assembly that is missing, corrupt, or version-mismatched. In practical terms, the system is reporting that the referenced assembly is not installed on your system. If you see this in a log, it almost always means the calling component hit a precondition that the OS could not satisfy, rather than a hardware fault.
When does 0x000036B3 appear?
The most common real-world triggers for ERROR_SXS_ASSEMBLY_NOT_FOUND are the ones the subsystem itself reports most often:
- Visual C++ Redistributable missing or wrong architecture (x86 vs x64)
- Application manifest pointing to an assembly version that was never installed
- Corrupted WinSxS store after a failed servicing operation or interrupted update
- Third-party installer that left a half-registered manifest behind
- Wrong processorArchitecture token in the application manifest
- Group Policy or SRP blocking the side-by-side activation path
If your situation does not match any of the bullets above, capture the failing call with Process Monitor (filter by the failing PID and the last non-success Result) before you start guessing. The exact preceding operation almost always pins the root cause.
How to fix 0x000036B3
Work through the steps in order. The PowerShell block triages the issue, the second block applies the most common fix, and the verify section at the bottom confirms the failure cleared.
Detect (PowerShell, run as Administrator)
# Pull the last 200 side-by-side events with full text.
Get-WinEvent -LogName 'Application' -MaxEvents 500 |
Where-Object { $_.ProviderName -eq 'SideBySide' } |
Select-Object TimeCreated, Id, Message | Format-List
# Show installed Visual C++ runtimes side-by-side.
Get-ItemProperty 'HKLM:\Software\Microsoft\Windows\CurrentVersion\Uninstall\*' |
Where-Object { $_.DisplayName -match 'Visual C..' } |
Select-Object DisplayName, DisplayVersion
Apply the fix (PowerShell, run as Administrator)
# 1. Verify system files and component store integrity.
sfc /scannow
DISM /Online /Cleanup-Image /ScanHealth
DISM /Online /Cleanup-Image /RestoreHealth
# 2. Re-install the matching Visual C++ Redistributable architecture.
# Download from learn.microsoft.com/cpp/windows/latest-supported-vc-redist
Start-Process -Wait -FilePath '.\vc_redist.x64.exe' -ArgumentList '/install','/quiet','/norestart'
# 3. If a specific assembly is missing, list the manifest text the app expects.
sxstrace.exe Trace -logfile:C:\Temp\sxs.etl
# Reproduce the failure, then:
sxstrace.exe Parse -logfile:C:\Temp\sxs.etl -outfile:C:\Temp\sxs.txt
Get-Content C:\Temp\sxs.txt -Tail 80
Companion cmd commands
rem Inspect the WinSxS store size and find pending corruption.
dism /online /cleanup-image /analyzecomponentstore
rem Force a component store rebuild after a corrupted update.
dism /online /cleanup-image /startcomponentcleanup /resetbase
If you cannot fix it immediately
If you cannot resolve it immediately, restart the affected service, log the error context, and capture the call stack with a debugger or Process Monitor so the root cause survives a reboot. Treat the code as a signal, not a root cause.
How to verify the fix worked
Run the verification block below in the same elevated PowerShell session, then re-run the operation that originally raised the error. If both the verification commands and the original operation come back clean, the fix held.
# Re-run sxstrace and confirm the failing manifest now resolves.
sxstrace.exe Trace -logfile:C:\Temp\sxs2.etl
# Reproduce the launch, then:
sxstrace.exe Parse -logfile:C:\Temp\sxs2.etl -outfile:C:\Temp\sxs2.txt
Get-Content C:\Temp\sxs2.txt -Tail 40
# Confirm the Application log is clean for SideBySide.
Get-WinEvent -LogName Application -MaxEvents 200 |
Where-Object { $_.ProviderName -eq 'SideBySide' -and $_.LevelDisplayName -ne 'Information' }
Also re-check the relevant Windows event log for the next 24 hours. Codes from this subsystem sometimes return after a scheduled job, a policy refresh, or a service restart fires.
Frequently asked questions
What does 0x000036B3 mean exactly?
It is the Side-by-side assemblies (WinSxS) reporting a specific precondition failure. The symbolic name ERROR_SXS_ASSEMBLY_NOT_FOUND describes the precondition in compiler-style abbreviated form; the at-a-glance table shows the official one-line description.
Is 0x000036B3 dangerous?
In isolation it is mostly an indicator, not a vulnerability. The code is a status, not a fault. The deeper problem is whatever upstream call passed in bad inputs or hit a stale piece of state. Treat the code as a signpost.
Will reinstalling Windows fix 0x000036B3?
Almost never, and reinstalling is the wrong first move. The fix is almost always a config repair, a permission grant, or a service restart. Reserve a reinstall for the rare case where SFC and DISM both fail to repair the component store.
How is 0x000036B3 different from neighbouring codes in the same range?
Codes in the same numeric range come from the same subsystem and the same source file, so they share the surrounding context. The specific failure mode is what changes from code to code. Inspect the symbol name to spot the exact precondition.
Does Microsoft have a public reference for ERROR_SXS_ASSEMBLY_NOT_FOUND?
Yes. The canonical reference is https://learn.microsoft.com/en-us/windows/win32/sbscs/about-side-by-side-assemblies. The MS-ERREF spec (https://learn.microsoft.com/en-us/openspecs/windows_protocols/ms-erref/) lists every HRESULT, NTSTATUS, and Win32 system error code with its numeric value and symbolic name.
Related error codes
Codes near this one in the numeric range usually come from the same source file in the Windows tree, so the same fix often resolves them:
- How to fix Windows error 0x000036B1
- How to fix Windows error 0x000036B2
- How to fix Windows error 0x000036B4
- How to fix Windows error 0x000036B5
- How to fix Windows error 0x000036B6
If a neighbouring page has not been published yet, the link will 404 - re-check after the next batch.
Related fixes
Related guides worth a look while you sort this one out:
- How to fix Windows error 0x00003647
- How to fix Windows error 0x00003648
- How to fix Windows error 0x00003649
- How to fix Windows error 0x000036B0
- How to fix Windows error 0x000036B1
- How to fix Windows error 0x000036B2
References
- Microsoft Learn — Side-by-side assemblies (WinSxS): https://learn.microsoft.com/en-us/windows/win32/sbscs/about-side-by-side-assemblies
- Microsoft MS-ERREF (full Windows error code reference): https://learn.microsoft.com/en-us/openspecs/windows_protocols/ms-erref/
- Win32 system error codes: https://learn.microsoft.com/en-us/windows/win32/debug/system-error-codes
- Subsystem deep dive: https://learn.microsoft.com/en-us/cpp/windows/latest-supported-vc-redist
- This article's underlying data row: code=
0x000036B3, symbol=ERROR_SXS_ASSEMBLY_NOT_FOUND, source=Microsoft MS-ERREF (HRESULT).
This guide was assembled from the official Microsoft MS-ERREF reference and the Side-by-side assemblies (WinSxS) documentation on 2026-05-25. Always confirm against the vendor reference before applying changes in production.
Field notes from real Windows incidents
When I work on the 0x000036B3 symptom the rhythm I lean on is the one I have built over years of these tickets. Windows error codes come in a handful of families; once you recognise the family, the doc page is one search away. STOP codes look terrifying but the first DWORD almost always points directly at the responsible driver. Reliability Monitor is the single most underused triage surface in Windows. it gives 30 days of crash history without writing a query.
Tools I actually reach for
For the 0x000036B3 symptom on Windows the cheapest signal I can land usually comes from Reliability Monitor (perfmon /rel), then Windows Performance Recorder, DISM and sfc when Reliability Monitor (perfmon /rel) cannot see the layer the fault sits in, and Windows Error Lookup Tool (err.exe) for the cases where neither of those answers cleanly. That ordering is not academic. It matches the layers the failure tends to surface through, so the cheap signal lands first and the heavier tooling only comes out when the simpler answer does not hold up under scrutiny.
Verification I run before I close the ticket
Before I mark the 0x000036B3 symptom resolved on a Windows unit, the verification loop below is what I actually run. Each step proves a different layer is green, and the order matters - the cheap checks gate the more expensive ones.
wevtutil epl System system.evtx # export for offline reviewIf that one comes back clean, move to the next check. If it does not, stop and dig in there before layering more verification on top of a red signal.
sfc /scannowIf that one comes back clean, move to the next check. If it does not, stop and dig in there before layering more verification on top of a red signal.
Get-WinEvent -FilterHashtable @{LogName='System'; Level=1,2; StartTime=(Get-Date).AddDays(-7)}If that one comes back clean, move to the next check. If it does not, stop and dig in there before layering more verification on top of a red signal.
DISM /Online /Cleanup-Image /RestoreHealthOnly when every line above runs clean do I close the ticket and update the runbook with the timestamps.
Where I check first when the docs disagree
When two sources contradict each other on a Windows detail, the disambiguation order I lean on is stable. I usually start at support.microsoft.com for the ground-truth view on Windows. I usually start at github.com/microsoft/Windows-Driver-Frameworks for the ground-truth view on Windows. I usually start at techcommunity.microsoft.com/category/windows for the ground-truth view on Windows. I usually start at learn.microsoft.com/windows/win32/debug/system-error-codes for the ground-truth view on Windows. Random blog posts and reseller wikis are signal, not ground truth, and I treat them as such until the references above either confirm or contradict the claim.
Pitfalls I have walked into on this exact path
The shortcuts that look smart on the 0x000036B3 symptom have a habit of biting back. The pitfalls below are the ones I have personally walked into on a Windows unit, not things I read about. Windows error codes come in a handful of families; once you recognise the family, the doc page is one search away. STOP codes look terrifying but the first DWORD almost always points directly at the responsible driver. When in doubt I revert to the slower path that the manual prescribes - the time I save by skipping it is always smaller than the time I spend cleaning up afterwards.
What I tell the next on-call
When I hand the 0x000036B3 symptom off to the next person on rotation, the three lines I leave in the runbook are these. First, the symptom signature for Windows on the Windows family - not a paraphrase, the exact string that surfaces. Second, the diagnostic that gave the highest signal in the least time. Third, the exact verification command whose green output justified closing the ticket. That trio is what turns a one-off fix into a runbook entry the next engineer can use without paging me at three in the morning.
I also add a one-line note on the cost of getting this wrong. For the 0x000036B3 symptom on a Windows unit, the cost is rarely the replacement part. It is the downtime, the second site visit, and the trust deficit you spend with whoever owns the asset when the fix does not hold. That framing keeps the next on-call from choosing the cheap-looking shortcut that ends up costing the most in elapsed hours and goodwill.