Active Directory Administration
Active Directory administration is the day-to-day management of Microsoft's directory service for Windows networks. It covers creating and organizing user accounts, groups, and computer objects, delegating permissions, applying Group Policy settings, and maintaining domain controllers so that authentication and authorization work reliably across the organization.
itWindows and Microsoft infrastructure | OpenSkills.info
Course pathWalk it in order
Look it upDip in anytime
Go furtherLeaves this page
Don't Panic
Don't Panic: Active Directory Administration
Active Directory Domain Services, or AD DS, is a shared address book that also gets to decide who may open the filing cabinet. It keeps users, computers, groups, and resources in one directory, then uses that directory for sign-in, access checks, and configuration. Before this arrangement, each server kept its own list of accounts, which is a reliable way to turn one departing employee into ten forgotten passwords.
The trick is that the address book is copied. A domain controller is a server with a writable copy of the domain's directory, and several domain controllers replicate changes between themselves. This makes the directory less fragile than one central server, but it does mean a change does not appear everywhere by telepathy. A site tells AD DS which networks are well connected, so replication can be quick nearby and more deliberate across a slower link. Networking has opinions, and AD DS has learned to respect them.
The structure looks grander than it is. A forest is the top-level collection that shares a schema, configuration, and global catalog. Inside it sit domains, where accounts and authentication live; inside those sit OUs, where delegated administration and Group Policy tend to happen. Group Policy is the mechanism for applying a named set of settings to a site, domain, or OU. Its two halves live in the directory and SYSVOL, because one storage location was apparently not enough excitement.
Authentication is mostly Kerberos. A domain controller's KDC gives a signed-in user tickets for other services, so every file share does not ask for a password again. Groups then make authorization manageable: grant access to a group once instead of conducting a small ceremony for every account. Five FSMO roles stand apart from ordinary replication for the few decisions where two writers would cause genuine trouble.
Start with the Intro for the logical model, trusts, and the reason DNS is non-negotiable. The Slides turn those relationships into a map. The Cheatsheet is the fast lookup for scopes, FSMO roles, and the GPO split. The Field Notes are for the awkward operational consequences that diagrams politely leave out.
Where this skill leads
Relevant careers
See how this topic contributes to broader role-level skill maps.
Sources
- https://learn.microsoft.com/en-us/windows-server/identity/ad-ds/get-started/virtual-dc/active-directory-domain-services-overview
Supports
- What AD DS is and what it stores (users, computers, groups, shared resources)
- AD DS core components: schema, global catalog, query/index mechanism, replication service, integrated security
- Definition of the schema as the rules for object classes/attributes
- Definition of the global catalog as a forest-wide search index
- https://learn.microsoft.com/en-us/windows-server/identity/ad-ds/plan/understanding-the-active-directory-logical-model
Supports
- Logical hierarchy of forest, domain tree, domain, organizational unit (OU)
- Forest definition (shared schema, configuration, global catalog) and automatic two-way transitive trusts between domains in one forest
- Domain definition as a directory partition and core administrative/authentication/replication boundary
- OU definition as a container for delegated administration and Group Policy application
- https://learn.microsoft.com/en-us/windows-server/identity/ad-ds/manage/understand-fsmo-roles
Supports
- Definition and scope (forest-wide vs domain-wide) of all five FSMO roles
- Schema Master and Domain Naming Master as one-per-forest roles
- RID Master, PDC Emulator, and Infrastructure Master as one-per-domain roles
- PDC Emulator as authoritative for password changes, account lockouts, and forest time source
- Infrastructure Master's role update behavior and its interaction with global catalog placement
- Rationale for FSMO roles existing despite multimaster replication
- https://learn.microsoft.com/en-us/windows-server/identity/ad-ds/get-started/replication/active-directory-replication-concepts
Supports
- Multimaster replication model
- Site, site link, and bridgehead server definitions
- Intra-site vs inter-site replication behavior (frequent/fast vs scheduled)
- Global catalog server definition (full replica of its own domain, partial replica of every other domain)
- Knowledge Consistency Checker (KCC) role in building replication topology
- https://learn.microsoft.com/en-us/windows-server/identity/ad-ds/manage/group-policy/group-policy-overview
Supports
- GPO definition and its two components (Group Policy container in the domain partition, Group Policy template in SYSVOL)
- GPOs link to sites, domains, and OUs
- Group Policy inheritance/cumulative application down the OU hierarchy
- Group Policy applied at computer startup and user sign-in, with periodic background refresh
- Client-side extension (CSE) role in applying policy settings
- OU as the lowest-level container to which Group Policy is assigned, and typical linking practice
- https://learn.microsoft.com/en-us/windows-server/security/kerberos/kerberos-authentication-overview
Supports
- Kerberos Key Distribution Center (KDC) running on domain controllers, using the AD DS database as its account store
- Single sign-on benefit of Kerberos within a domain/forest
- Mutual authentication as a Kerberos property NTLM lacks
- Delegation (a service acting on behalf of a client to another service)
- Renewable session tickets reducing the need for per-request domain controller contact, versus NTLM pass-through authentication
- https://learn.microsoft.com/en-us/windows-server/identity/ad-ds/manage/understand-security-groups
Supports
- Security groups vs distribution groups
- Group scope table: domain local, global, universal — membership and permission-granting rules
- Assigning rights/permissions to groups rather than individual accounts
- Default groups location (Builtin/Users containers) and the AdminSDHolder protection mechanism
- https://learn.microsoft.com/en-us/windows-server/identity/ad-ds/plan/active-directory-integrated-dns-zones
Supports
- Active Directory-integrated DNS zones replicate via AD DS replication (multimaster) instead of classic zone transfers
- Secure dynamic updates
- ForestDnsZones and DomainDnsZones application directory partitions
- https://learn.microsoft.com/en-us/entra/identity/domain-services/concepts-forest-trust
Supports
- Trust direction (one-way/two-way) and transitivity (transitive/non-transitive) definitions
- All on-premises AD DS domain trusts within one forest are two-way and transitive by default
- Forest trusts connect exactly two forest root domains and are not implicitly extended to a third forest
- Trusted Domain Object (TDO) storage and the 30-day trust password rotation driven by the trusting domain's PDC Emulator
- Kerberos and NTLM referral processing across trust paths
- https://learn.microsoft.com/en-us/troubleshoot/windows-server/system-management-components/remote-server-administration-tools
Supports
- RSAT's AD DS/AD LDS toolset: Active Directory Administrative Center, Active Directory Domains and Trusts, Active Directory Sites and Services, Active Directory Users and Computers, and the Active Directory module for Windows PowerShell
- https://learn.microsoft.com/en-us/powershell/module/activedirectory/
Supports
- Existence and purpose of the ActiveDirectory PowerShell module
- Cmdlet names referenced in this course (Get-ADUser, Get-ADGroupMember, Get-ADDomainController, New-ADUser)
- https://learn.microsoft.com/en-us/windows-server/identity/ad-ds/deploy/install-active-directory-domain-services--level-100-
Supports
- Installing AD DS and promoting a server with ADDSDeployment cmdlets
- Lab exercise commands and required administrative roles
- https://learn.microsoft.com/en-us/windows/win32/ad/rodc-and-active-directory-schema
Supports
- Windows Server 2008 introduction of read-only domain controllers
- RODC filtered attributes and branch-office purpose
- https://learn.microsoft.com/en-us/windows-server/identity/ad-ds/manage/ad-ds-simplified-administration
Supports
- Windows Server 2008 R2 introduction of Active Directory Recycle Bin
- Windows Server 2012 Active Directory Administrative Center support for Recycle Bin
- https://learn.microsoft.com/en-us/previous-versions/windows/it-pro/windows-server-2012-r2-and-2012/hh831477%28v%3Dws.11%29
Supports
- Windows Server 2012 AD DS virtualization-safe technologies and domain-controller cloning
- Windows Server 2012 AD DS deployment and management improvements
- https://learn.microsoft.com/en-us/windows-server/get-started/whats-new-in-windows-server-2016
Supports
- Windows Server 2016 privileged access management and time-limited group membership
- Windows Server 2016 AD DS and SYSVOL changes
- https://learn.microsoft.com/en-us/windows-server/identity/ad-ds/active-directory-functional-levels
Supports
- Windows Server 2025 forest and domain functional levels
- Optional 32k Active Directory database page size
- Functional-level interoperability guidance
- https://download.microsoft.com/download/C/6/C/C6C3C6F1-E84A-44EF-82A9-49BD3AAD8F58/Windows/%5BMS-ADSC-Diff%5D.pdf
Supports
- Version-specific Active Directory schema behavior implemented by Windows 2000 Server and Windows Server 2003
- Historical implementation anchors for the timeline
- https://learn.microsoft.com/en-us/entra/identity/domain-services/
Supports
- Microsoft Entra Domain Services managed-domain capabilities including domain join, LDAP, Kerberos, NTLM, and Group Policy
- https://aws.amazon.com/directoryservice/
Supports
- AWS managed directory-service offerings for Microsoft Active Directory workloads
- https://www.samba.org/samba/
Supports
- Samba project as a directory-services implementation option
- https://jumpcloud.com/
Supports
- JumpCloud cloud directory platform
- https://www.okta.com/products/universal-directory/
Supports
- Okta Universal Directory as an identity-provider directory option
