ERROR_DS_NO_DELETED_NAME - 8355 (0x20A3)
Failed to create name for deleted object.
Updated: Feb 21, 2026
Technical Meaning
The ERROR_DS_NO_DELETED_NAME error indicates that an attempt was made to create a name for a deleted object, but the operation failed. This typically occurs in scenarios involving Active Directory or similar directory services where objects are managed and can be deleted.
Error Details
This error is specific to operations within the Windows API, particularly those related to Active Directory Services (ADS). When an attempt is made to reference or create a name for a deleted object, this error is returned. It signifies that the system cannot locate or process the requested object because it has been marked as deleted.
Usage Context
This error can occur in various scenarios where directory services are used, such as when attempting to access or manipulate objects within an Active Directory environment. Developers should be aware of this error when working with APIs that interact with these services and handle deletions appropriately.
Developer Interpretation
When encountering ERROR_DS_NO_DELETED_NAME, developers should interpret it as a failure in the operation due to the target object being deleted. This can affect operations such as directory searches, attribute modifications, or any other actions that rely on the existence of specific objects within the directory structure.
Related Errors
- ERROR_OBJECT_NOT_FOUND: A more generic error indicating an object could not be found.
- ERROR_DS_OBJECTleanor: Another specific error related to Active Directory operations, which might occur in similar contexts but for different issues.
FAQ
Q: What does ERROR_DS_NO_DELETED_NAME mean?
A: It indicates that the system attempted to create a name for a deleted object and failed because the object no longer exists.
Q: How can I handle this error in my code?
A: Ensure that your operations account for the possibility of objects being deleted. Validate the existence of objects before performing actions on them, and handle errors gracefully by providing appropriate feedback or alternative paths.
Summary
ERROR_DS_NO_DELETED_NAME is a specific error indicating a failure to create a name for a deleted object in Active Directory services. Developers should be aware of this error when working with directory operations that involve deletions and ensure their code handles such scenarios appropriately.