DNS_STATUS_CONTINUE_NEEDED - 9801 (0x2649)

Secure update call needs to continue update request.

Updated: Feb 21, 2026

Technical Meaning

The DNS_STATUS_CONTINUE_NEEDED error code, with the numeric value 9801 (0x2649 in hexadecimal), is returned by certain Windows API functions when a secure update call requires further processing to complete the request. This status indicates that the operation has not been fully completed and needs additional steps.

Error Details

This error typically occurs during DNS-related operations, particularly those involving secure updates or certificate validation processes. The function returns this status to inform the caller that it must continue with the update process in order to complete the requested action successfully.

Usage Context

The DNS_STATUS_CONTINUE_NEEDED error is commonly encountered when using Windows API functions such as DnsQuerySecure, which performs DNS queries with secure updates. The function may return this status if additional steps are required, such as obtaining a new certificate or updating existing security credentials.

Developer Interpretation

When the DNS_STATUS_CONTINUE_NEEDED error is returned, developers should understand that the operation has not been fully completed and requires further action to be taken by the application. This typically involves calling the same function again with updated parameters or performing additional steps as specified in the documentation for the specific API function.

Related Errors

  • DNS_ERROR_NO_SUCH_HOST (1061, 0x425): Indicates that the host name could not be resolved.
  • DNS_ERROR_QUERY_CANCELED (9803, 0x264B): Indicates that a DNS query was canceled before it completed.

FAQ

Q: What does DNS_STATUS_CONTINUE_NEEDED mean?

A: It indicates that the secure update call requires further processing to complete the request. The operation has not been fully completed and needs additional steps.

Q: How should I handle this error in my application?

A: You should continue with the update process as specified by the documentation for the specific API function. This may involve calling the same function again or performing additional steps to complete the request.

Summary

The DNS_STATUS_CONTINUE_NEEDED error code is a specific technical indicator that an operation requires further processing in secure update scenarios. Developers should understand its context and follow the appropriate steps as outlined by the Windows API documentation to resolve this issue.