Damien Coles f172d00514 Initial release: Declarative AD Framework v2.1.0
Infrastructure-as-code framework for Active Directory objects and Group Policy.
Sanitized from production deployment for public sharing.
2026-02-19 17:02:42 +00:00

16 lines
507 B
PowerShell

# ADHelper.ps1
# Loader: dot-sources the modular AD helper library.
# Apply-ADBaseline.ps1 continues to load this single file -- zero breaking changes.
$libDir = $PSScriptRoot
# Core utilities (other modules depend on these)
. (Join-Path $libDir 'ADCore.ps1')
# Feature modules (order-independent)
. (Join-Path $libDir 'ADOrganizationalUnit.ps1')
. (Join-Path $libDir 'ADGroup.ps1')
. (Join-Path $libDir 'ADUser.ps1')
. (Join-Path $libDir 'ADDelegation.ps1')
. (Join-Path $libDir 'ADPasswordPolicy.ps1')