ERROR_SXS_IDENTITY_PARSE_ERROR - 14093 (0x370D)
The identity string is malformed. This may be due to a trailing comma, more than two unnamed attributes, missing attribute name or missing attribute value.
Updated: Feb 21, 2026
Technical Meaning
The ERROR_SXS_IDENTITY_PARSE_ERROR is a specific error code indicating that the identity string provided to a Windows API function has been malformed. This error typically occurs during the parsing of an identity string, which can include user or group names in security contexts.
Error Details
This error is triggered when the input identity string does not conform to the expected format. Common issues include:
- A trailing comma in the string
- More than two unnamed attributes within the string
- Missing attribute name or value
Usage Context
The ERROR_SXS_IDENTITY_PARSE_ERROR can be encountered in various Windows API functions that deal with identity parsing, such as those used for security contexts, user management, and group membership checks.
Developer Interpretation
When this error is returned, it indicates that the input provided to an API function was not correctly formatted. Developers should ensure that any strings passed to these functions are well-formed according to the expected syntax.
Related Errors
ERROR_INVALID_PARAMETER(1400)ERROR_BAD_NETPATH(67)ERROR_INVALID_NAME(123)
FAQ
Q: What causes this error?
A: The error is caused by a malformed identity string, such as an extra comma or missing attribute name or value.
Q: How can I resolve it?
A: Ensure that the input strings are correctly formatted before passing them to API functions. Check for any extraneous characters and validate the structure of the identity string.
Summary
The ERROR_SXS_IDENTITY_PARSE_ERROR is a specific error code indicating malformed identity strings in Windows API functions. Developers should ensure their inputs meet the required format to avoid this error.