ERROR_SXS_XML_E_UNCLOSEDENDTAG - 14061 (0x36ED)

Manifest Parse Error : End element was missing the character '>'.

Updated: Feb 21, 2026

Technical Meaning

This error code indicates a specific issue encountered during the parsing of XML content, particularly in the context of Windows Side-by-Side (SxS) assemblies. The error signifies that an end element tag was not properly closed, which is a common syntax error in XML documents.

Error Details

The ERROR_SXS_XML_E_UNCLOSEDENDTAG error code is returned when the XML parser encounters an unclosed end tag during the processing of a manifest file or related SxS assembly metadata. This can occur due to various reasons, such as malformed input data or incorrect handling by the application.

Usage Context

This error typically arises in scenarios where XML manifests are being processed for deployment or execution of Windows applications and components. Manifests play a crucial role in defining dependencies and attributes for assemblies, ensuring that they are loaded correctly at runtime.

Developer Interpretation

Developers should interpret this error as an indication that the XML content provided is not well-formed. Specifically, it suggests that there is an issue with the structure of the XML document, where an end tag has been improperly closed or omitted entirely. This can lead to failures in loading assemblies or executing applications that rely on these manifests.

Related Errors

  • ERROR_SXS_XML_E_UNCLOSEDSTARTTAG (14062): Indicates a missing start tag.
  • ERROR_SXS_XML_E_MISSINGENDTAG (14063): Suggests an unclosed element in the XML document.

FAQ

Q: What does this error mean?

A: This error indicates that there is a syntax issue in the XML content, specifically with an unclosed end tag. It is crucial to ensure that all tags are properly closed to avoid such errors.

Q: How can I resolve this issue?

A: Review and correct any malformed XML documents. Ensure that all start and end tags are correctly formed and balanced.

Summary

The ERROR_SXS_XML_E_UNCLOSEDENDTAG error code is a specific manifestation of an XML parsing failure, indicating issues with the structure of manifest files used in Windows SxS assemblies. Developers should focus on ensuring well-formed XML documents to avoid this and similar errors.