Hi Keith B. Martin,
As far as I know, the error you are encountering (“Maximum size of an object exceeded”) typically indicates that one or more attributes on the affected objects have grown beyond the supported limit in Active Directory. In your case, the eduPersonAssurance attribute appears to be the trigger.
Even though the attribute is defined as a multi-valued string with only a few values, schema mismatches or improper replication of the schema extension can cause AD to misinterpret the object size. This often happens when new DCs are introduced and FSMO roles are moved before schema replication has fully converged.
To troubleshoot, I recommend the following steps:
- Verify schema consistency across all domain controllers using
repadmin /showattr * <schemaDN> -attschema. - Run
repadmin /showobjmetaagainst the problematic objects to confirm which DCs hold differing metadata. - Check if the schema extension for
eduPersonAssurancewas applied correctly on all DCs. If not, reapply or synchronize the schema update. - Consider moving FSMO roles temporarily back to a stable DC until replication converges.
- If the attribute itself is corrupted, you may need to clear and regenerate it using ADSI Edit or PowerShell, but only after confirming schema consistency.
In some cases, forcing a full synchronization (repadmin /syncall /APeD) after schema correction resolves the issue. If replication access errors persist, confirm that the new DCs have proper permissions and that secure channel trust is intact.
You can try and feel free to reply if you need further information.
If you find this answer helpful, please consider clicking Accept Answer so I know your issue has been resolved.
Jason.