ERROR_SXS_XML_E_EXPECTINGCLOSEQUOTE - 14045 (0x36DD)
Manifest Parse Error : A single or double closing quote character (\' or \") is missing.
Updated: Feb 21, 2026
Technical Meaning
The error code ERROR_SXS_XML_E_EXPECTINGCLOSEQUOTE (14045, 0x36DD) is a manifest parse error indicating that the XML file being processed by the Windows Side-by-Side assembly (SXS) system is missing either a single or double closing quote character. This error typically occurs during the validation and parsing of an XML manifest file.
Error Details
The SXS subsystem relies on XML manifests to describe dependencies, versioning, and other metadata for assemblies. When these manifests are malformed due to missing quotes, the system cannot correctly interpret the content, leading to this specific error code being returned.
Usage Context
This error is encountered when an application or service attempts to load a manifest file that contains improperly formatted XML. The manifest might be part of a .NET assembly, a Windows module, or any other component managed by the SXS system.
Developer Interpretation
Developers should ensure that all XML files used in their applications are well-formed and adhere to the XML specification. Missing quotes can lead to incorrect parsing and potential runtime errors. Developers should validate input data and ensure that all necessary characters, including closing quotes, are present in the manifest files.
Related Errors
ERROR_SXS_XML_E_MISSINGQUOTE(14046, 0x36DE): A single or double quote is missing from an attribute value.ERROR_SXS_XML_E_UNCLOSEDSTRING(14052, 0x370C): An unclosed string literal in the XML manifest.
FAQ
Q: What causes this error?
A: This error occurs when a single or double closing quote is missing from an attribute value in the XML manifest file. Ensuring that all quotes are properly closed can resolve this issue.
Q: How do I fix it?
A: Review and correct any malformed XML in your manifests to ensure that all necessary characters, including closing quotes, are present.
Summary
The ERROR_SXS_XML_E_EXPECTINGCLOSEQUOTE error indicates a missing closing quote character in an XML manifest file. Developers should validate their input data and ensure proper formatting of XML files to avoid this issue.