What does NTSTATUS 0xC00002C1 (STATUS_DS_ADMIN_LIMIT_EXCEEDED) mean?

 
Previous Next
STATUS_DS_RIDMGR_DISABLED STATUS_DRIVER_FAILED_SLEEP

STATUS_DS_ADMIN_LIMIT_EXCEEDED

The request exceeded a directory service limit

This status means the directory rejected the operation because it exceeded a configured or built-in administrative limit. It can be triggered by searches that return or process too much data, large updates, or operations that would consume excessive server resources.

The fix is usually to narrow or page the request, use indexed attributes, split writes, or adjust directory policy after review. Treating it as an account permission problem misses the server-side resource dimension.

What to inspect

  • Record the LDAP base DN, scope, filter, requested attributes and page size.
  • Check query cost, returned entry count, timeout and size-limit behavior.
  • Review whether the caller is bypassing application-level paging or range retrieval.

References


Looking for a different code? Search another status or error code.