ERROR_DOMAIN_CONTROLLER_EXISTS - 1250 (0x4E2)
A domain controller with the specified name already exists.
Updated: Feb 21, 2026
Technical Meaning
The ERROR_DOMAIN_CONTROLLER_EXISTS error indicates that an attempt was made to create or reference a domain controller with a name that is already in use within the Active Directory domain. This error typically occurs during operations such as adding a new domain controller, configuring DNS records for existing controllers, or managing domain trust relationships.
Error Details
This specific error code (1250) is returned by Windows APIs and services when they encounter an attempt to add a duplicate name for a domain controller. The error message provides clarity that the specified name is already associated with another domain controller within the same Active Directory forest or domain.
Usage Context
The ERROR_DOMAIN_CONTROLLER_EXISTS error can be encountered in various scenarios, such as:
- Adding a new domain controller to an existing domain.
- Modifying DNS records for existing domain controllers.
- Performing operations that require unique naming within the domain structure.
Developer Interpretation
Developers should interpret this error code as indicating a conflict with existing domain controller names. This can be due to multiple reasons, such as:
- Incorrectly configured DNS or Active Directory settings.
- Manual renaming of domain controllers without proper cleanup.
- Issues during the decommissioning process of old domain controllers.
Related Errors
ERROR_DOMAIN_CONTROLLER_NOT_FOUND(1251): Indicates that a specified domain controller could not be found.ERROR_INVALID_NAME(123): Indicates an invalid name was provided, which may include issues with the domain controller name.ERROR_DS_DRA_INCONSISTENT_STATE(2694): May indicate issues related to replication or inconsistent state between domain controllers.
FAQ
Q: Why does this error occur?
A: This error occurs when an attempt is made to add a domain controller with a name that already exists within the Active Directory domain. It can be due to incorrect configuration, manual renaming without cleanup, or issues during decommissioning of old controllers.
Q: How can I resolve this issue?
A: Ensure that all domain controller names are unique and correctly configured in DNS and Active Directory. Review any recent changes made to the domain structure and correct any inconsistencies.
Summary
The ERROR_DOMAIN_CONTROLLER_EXISTS error (1250) is a specific technical indication of a naming conflict within an Active Directory domain. It requires careful review and correction of domain controller names and related configurations to resolve the issue.