ERROR_DS_SHUTTING_DOWN - 8364 (0x20AC)
The operation could not be performed because the directory service is shutting down.
Updated: Feb 21, 2026
Technical Meaning
The error code ERROR_DS_SHUTTING_DOWN with the numeric value 8364 and hexadecimal representation 0x20AC indicates that a directory service operation could not be completed because the directory service is in the process of shutting down. This error typically occurs during system shutdown or when specific maintenance operations are being performed on the directory service.
Error Details
This error is specific to directory services and is part of the Active Directory Domain Services (AD DS) framework, which manages directory information for Windows domain environments. The error suggests that any attempt to perform a directory-related operation will fail if the service is in the process of shutting down.
Usage Context
The ERROR_DS_SHUTTING_DOWN error can be encountered when performing operations such as adding or modifying objects within an Active Directory, querying directory information, or attempting to synchronize data with other services. It is important to note that this error does not indicate a failure in the operation itself but rather a timing issue related to the shutdown process.
Developer Interpretation
Developers should interpret this error as a signal that the current operation cannot be completed due to the directory service being shut down. This can help in designing robust applications that handle such scenarios gracefully, for example by retrying the operation after the service has fully shut down or by logging the failure and taking appropriate action.
Related Errors
ERROR_DS_SERVICE_NOT_RUNNING(2340): Indicates that the directory service is not running.ERROR_DS_OBJECTleanor(2195): Occurs when an object cannot be found in the directory service, which might occur if the service has shut down.
FAQ
Q: What does the error ERROR_DS_SHUTTING_DOWN mean?
A: It indicates that a directory service operation could not be performed because the directory service is shutting down. This typically occurs during system shutdown or maintenance operations on the directory service.
Q: How can I handle this error in my application?
A: You should design your application to gracefully handle this error by either retrying the operation after the service has fully shut down or logging the failure and taking appropriate action based on the context of the operation.
Summary
The ERROR_DS_SHUTTING_DOWN (8364) is a specific error code indicating that directory service operations cannot be performed because the directory service is shutting down. Developers should interpret this error as a timing issue and handle it appropriately in their applications.