A single domain with millions of objects can run healthy, and ten DCs can slow each other down if the design is wrong. This episode dissects AD architecture for the enterprise: multi-domain and multi-forest, Global Catalog, site design, RODCs for branches, and best practices for many DCs.

In episode 26 we made sure the infrastructure could survive a disaster. Now imagine a different scale: not one office with 300 employees, but 40,000 users spread across 60 countries, 8,000 branches, and 12 data centers. Every design decision that looks trivial in the lab — one DC per site, one GC, one site link — becomes an expensive decision that's hard to change once running.
This is an episode about design, not just configuration. At scale, design errors don't appear today; they appear a year later as stuttering replication, slow logons in remote branches, and ballooning operational costs. Let's dissect the principles that keep AD healthy as it grows to millions of objects.
Many administrators assume scale means many domains. In reality, a single modern domain can hold millions of objects. New domains should be created for design reasons, not fear:
| Boundary | Forest | Domain |
|---|---|---|
| Security boundary | Yes | No (only administrative boundary) |
| Schema | One for the entire forest | Same within a forest |
| Replication | Entire forest | Within the domain |
| Trust | Managed manually | Parent-child automatic |
The most common pattern in large enterprises: one forest, several domains, or even one forest and one domain with neatly organized OUs. Every additional domain means GC replication, RID pools, and administrative complexity that must be paid for daily.
At scale, the GC is no longer "nice to have" — it's part of the logon path. When a user logs on, the domain controller queries the GC to determine universal group membership. Without a GC, logon waits, delays, or fails.
GC placement principles:
In a multi-domain forest, every GC holds a partial copy of all domains' attributes. More domains mean more data replicated to every GC — one reason "one forest, one domain" is so attractive.
Sites are AD's physical network map: subnets are grouped into sites, then connected by site links with cost and schedule. At scale, mistakes here burden replication for years.
Set site links with PowerShell:
Set-ADReplicationSiteLink "DEFAULTIPSITELINK" -Cost 100 -ReplicationFrequencyInMinutes 30Small branches — stores, warehouses, representative offices — usually don't have a secure server room. This is where the Read-Only Domain Controller (RODC) (episode 19) comes in:
Rule of thumb: keep RODCs only at branches that need reliable local authentication but aren't suitable for a writable DC. Beyond one RODC per branch, reevaluate — don't pile up DCs in small locations.
The Knowledge Consistency Checker (KCC) (episode 16) builds the replication topology automatically. At scale, the biggest temptation is "helping" the KCC by creating manual connection objects. Don't — manual connections can make the topology messy and unpredictable.
The KCC is "tuned" through correct configuration, not intervention:
repadmin /replsummary /bysrc | Out-File "C:\Data\replsummary.txt"
repadmin /showrepl * /csv | Out-File "C:\Data\repl.csv"A repadmin /replsummary script run by a scheduled task every morning is an early warning: replication errors left for a week at scale can mean tens of thousands of out-of-sync objects.
Administration can't stay centralized in a handful of people as scale grows. Use three weapons:
Tip
At scale, the measure of success isn't "how many DCs", but "how many manual tasks remain". Every manual AD action that must be repeated is a candidate for automation.
In episode 27 you understood AD at enterprise scale: when multi-domain and multi-forest are truly needed, the Global Catalog's role in the logon path and universal group caching, site design through site link cost and bridgeheads, RODCs as the answer for branches, the KCC principle tuned through configuration not intervention, delegation and automation as survival requirements, and best practices for many DCs.
Key points:
After the large infrastructure comes a question big companies can't avoid: how do we prove its control? In episode 28 we dissect Active Directory Compliance & Auditing: regulations like SOX, HIPAA, PCI-DSS, and GDPR, audit policies, access reporting, up to change management. See you there!