What is Tenant Object Quota?

The Tenant Object Quota (also called Directory Object Quota or directorySizeQuota) is a Microsoft-imposed limit on the total number of directory objects that can exist in a single Entra ID tenant (formerly Azure Active Directory).

Default limits

Screenshot 2026-06-03 231900

What Counts Toward the Quota?

Virtually every object in the directory contributes to this count, including both active and recently deleted (soft-deleted) items. Microsoft counts a broad range of items:

Contacts

Issues When the Quota is Reached or Exceeded

When usage approaches or hits 100%, the tenant becomes severely restricted:

  1. Cannot create new users — Including regular members or B2B guests.

  2. Cannot create new groups or applications.

  3. Synchronization failures — Entra Connect (on-prem sync) fails with errors like "directory object quota limit exceeded."

  4. B2B/Partner Portal Issues — Accepting partner invitations or B2B collaboration links often fails because it requires creating a guest user object in the tenant.

  5. App registrations and service principals blocked.

  6. Broader operational halts — Provisioning, automation, Intune device enrollment, and many admin tasks stop working.

Why Does This Happen?

How to Check Your Tenant Quota

You can check from Entra Portal overview or by PowerShell.

Connect-MgGraph -Scopes "Organization.Read.All"

Get-MgOrganization | Select-Object -ExpandProperty AdditionalProperties | Select-Object directorySizeQuota

Solutions and Best Practices

1. Immediate Cleanup (Recommended First Step)

2. Request Quota Increase

3. Preventive Measures