Dear emir goenaga
First off, Microsoft’s current best practices emphasize a clean, security-first design. That means starting with a tiered administration model (Tier 0 for domain controllers and critical infra, Tier 1 for servers, Tier 2 for workstations/users) and making sure those tiers are isolated. Don’t mix them
For OU structure, the general guidance is to align OUs with those tiers rather than business units. So you’d have separate OUs for Tier 0 assets (DCs, PKI, privileged accounts), Tier 1 (servers, admin accounts), and Tier 2 (workstations, standard users). Within each tier, you can subdivide by function or geography if needed, but keep the tier boundaries strict.
On users, workstations, servers, and service accounts yes, separate them. Users and workstations go into Tier 2 OUs, servers into Tier 1, and service accounts should be treated carefully depending on privilege. If they’re highly privileged, they belong in Tier 0 and should be managed with Privileged Access Management (PAM) or similar.it’s tempting for convenience, but it creates exposure.
For GPOs, the key is to scope them to the right tier and avoid linking across tiers. For example, workstation hardening GPOs should only apply to Tier 2 OUs. Domain controller policies should stay in Tier 0. Cross-linking is where people often get into trouble.
Service accounts are best managed with group-based access and ideally integrated with PAM solutions like Microsoft’s Privileged Access Management in AD or Azure AD Privileged Identity Management. Place them in dedicated OUs, apply stricter policies, and monitor them closely.
As for reference architectures, Microsoft has published guidance around AD tiering, ESAE (Enhanced Security Admin Environment), and certificate-based authentication. The “Securing Privileged Access” documentation is a solid starting point, and if you’re integrating smart cards/CAC, you’ll want to follow the PKI design guides as well.
Bottom line: keep it tiered, keep it clean, and don’t let convenience override security. That way you’ll have a design that scales and holds up long term.