ERROR_SXS_THREAD_QUERIES_DISABLED - 14010 (0x36BA)
Lack of system resources has required isolated activation to be disabled for the current thread of execution.
Updated: Feb 21, 2026
Technical Meaning
The error code ERROR_SXS_THREAD_QUERIES_DISABLED with the numeric value 14010 and hexadecimal representation 0x36BA indicates that the system has encountered a situation where insufficient resources are available to enable isolated activation for the current thread of execution. Isolated activation is a feature in Windows that allows components from different application domains to run in isolation, enhancing security and stability.
Error Details
This error typically occurs when the operating system determines that there are not enough available resources (such as memory or processing power) to support isolated activation for the current thread. This can happen during the execution of certain operations where such isolation is required, but the necessary resources are not present.
Usage Context
The context in which this error might occur includes scenarios involving the Side-by-Side (SXS) assembly loader, which manages the loading and unloading of assemblies from different application domains. When isolated activation is disabled, it may affect the behavior of applications that rely on SXS features for component isolation.
Developer Interpretation
Developers should interpret this error as an indication that the system has encountered a resource constraint that prevents the normal operation of isolated activation. This can impact the performance and stability of applications that depend on such isolation, particularly in scenarios where multiple application domains are involved.
Related Errors
ERROR_SXS_MULTIPLE_DEPLOYMENT_FOUND(14025)ERROR_SXS_PROCESSOR_ARCHITECTURE_MISMATCH(13068)ERROR_SXS_VERSION_CONFLICT(14027)
FAQ
Q: What does the error mean?
A: The system has disabled isolated activation for the current thread due to insufficient resources.
Q: How can I resolve this issue?
A: Ensure that your application and its dependencies are optimized for resource usage, and consider increasing available system resources if possible.
Summary
The ERROR_SXS_THREAD_QUERIES_DISABLED error indicates a resource constraint preventing isolated activation. Developers should be aware of the implications on application performance and stability in scenarios requiring component isolation.