Infrastructure-as-code framework for Active Directory objects and Group Policy. Sanitized from production deployment for public sharing.
16 lines
507 B
PowerShell
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')
|