DNS_ERROR_RECORD_ONLY_AT_ZONE_ROOT - 9710 (0x25EE)

Record only at DNS zone root.

Updated: Feb 21, 2026

Technical Meaning

The DNS_ERROR_RECORD_ONLY_AT_ZONE_ROOT error code, with the numeric value 9710 (0x25EE), indicates that a resource record is only valid at the root of a DNS zone. This means that the operation attempted was not appropriate for the current context within the DNS hierarchy.

Error Details

This error typically arises when an attempt is made to perform an action on a DNS record that should be restricted to the root of the zone, such as adding or modifying records in a way that violates the hierarchical structure of the DNS domain. For example, attempting to modify a record at a subdomain level where it should only exist at the root would trigger this error.

Usage Context

This error is relevant primarily within the context of DNS management and configuration operations on Windows systems. It is commonly encountered when using the Windows API for DNS-related tasks or through administrative tools that interact with the DNS service.

Developer Interpretation

When encountering DNS_ERROR_RECORD_ONLY_AT_ZONE_ROOT, developers should ensure that their operations are correctly scoped to the appropriate level within the DNS hierarchy. Specifically, any modifications or additions to records must respect the root-level constraints of the zone in question. This error serves as a reminder that certain actions can only be performed at specific levels and not at lower subdomains.

Related Errors

  • DNS_ERROR_RECORD_DOES_NOT_EXIST: Indicates that a requested record does not exist, which might occur if an attempt is made to modify or delete a non-existent record.
  • DNS_ERROR_INVALID_NAME: Occurs when the name provided for a DNS operation is invalid, possibly due to incorrect syntax or structure.

FAQ

Q: What causes DNS_ERROR_RECORD_ONLY_AT_ZONE_ROOT?

A: This error typically occurs when an attempt is made to modify a record at a subdomain level where it should only exist at the root of the zone. Ensuring that operations are correctly scoped can prevent this error.

Q: How can I resolve this issue?

A: Review and correct any operations that attempt to modify records outside their allowed scope within the DNS hierarchy. Ensure all modifications respect the root-level constraints of the zone.

Summary

DNS_ERROR_RECORD_ONLY_AT_ZONE_ROOT is a specific error code indicating an inappropriate operation on a DNS record in relation to its location within the DNS zone. Developers should be mindful of the hierarchical structure when performing DNS-related tasks and ensure that operations are correctly scoped to avoid this error.