ERROR_EVT_MESSAGE_ID_NOT_FOUND - 15028 (0x3AB4)
The message id for the desired message could not be found.
Updated: Feb 21, 2026
Technical Meaning
This error code indicates that the system was unable to locate a specific message ID in its event log or message resource files. The message ID is used to reference a particular message within the logging framework.
Error Details
The ERROR_EVT_MESSAGE_ID_NOT_FOUND error typically occurs when an application or service attempts to retrieve a message associated with a given message ID, but that ID does not exist in the available resources.
Usage Context
This error can be encountered in various scenarios where event logging and message retrieval are involved. Common contexts include custom event log entries, system diagnostics, and application-specific logging mechanisms.
Developer Interpretation
When this error is returned, it signifies that a requested message ID does not exist within the expected resource files or database. Developers should ensure that all referenced message IDs are correctly defined and available in the relevant resources before attempting to retrieve messages.
Related Errors
ERROR_EVT_MESSAGE_RESOURCE_NOT_FOUND(15029, 0x3AB5)ERROR_EVT_MESSAGE_STRING_NOT_FOUND(15030, 0x3AB6)
FAQ
Q: What does the error code 15028 mean?
A: The message ID for the desired message could not be found.
Q: How can I resolve this issue?
A: Verify that all referenced message IDs are correctly defined and available in the resource files or database. Ensure that the application or service has access to the necessary resources.
Summary
The ERROR_EVT_MESSAGE_ID_NOT_FOUND error code is a generic indication that a requested message ID does not exist within the expected resources. Developers should carefully manage and validate all message IDs used in their applications to avoid this issue.