Declarative PowerShell framework to deploy and audit an Active Directory Tier Model (OUs, Groups, Users, ACL Delegations, GPOs, ADMX, MSA/gMSA/dMSA Permissions, Windows LAPS Permissions) from a single version-controlled JSON configuration file. Supports idempotent re-runs, drift detection, and reproducible builds via pinned dependency versions.
ποΈ Built with the Specify Framework - Test-driven development ensuring quality and reliability
- π Safe, repeatable deployments (WhatIf planning + convergent apply)
- π Drift auditing & reporting (hash provenance + structured findings)
- π§© Modular, test-first architecture (Pester enforced)
- π¦ Version governance for dependencies & configuration schema
π Full documentation: GitHub Pages - Active Directory Tier Model
To get started with TierModel, please refer to our comprehensive documentation:
- Quick Deployment Guide - Fast-track deployment for experienced administrators
- Detailed Deployment Guide - Step-by-step deployment with explanations
- FAQ - Frequently asked questions covering upgrades, migration from previous versions, troubleshooting, and Sentinel integration
- Deployment Methodology - Understanding the deployment approach
- Drift Detection Details - Comprehensive drift auditing and remediation
- Tier Model Logging - Structured logging and diagnostics
- GPO Management Strategy - Group Policy Object management
- ADMX Management - Administrative template handling
- Conditional Principals - Domain-specific principal resolution
- CI/CD Integration - Pipeline integration and automation
- Test Tag Matrix - Pester test organization
- Test Coverage - Comprehensive test coverage analysis and roadmap
- Language Support - Supported languages (English only today) and the localization roadmap
- Feature Specification - Complete requirements and user stories
- Implementation Plan - Technical architecture and design decisions
Current Test Status: β ALL TESTS PASSING (Last run: July 31, 2026)
| Test Suite | Test Files | Test Cases | Status | Coverage |
|---|---|---|---|---|
| Unit Tests | 17 files | 1,147 tests | β 100% Pass | 88.72% |
| Integration Tests | 7 files | 288 tests | β 100% Pass | 100% |
| Manual Integration Tests | 1 file | 331 tests | β 100% Pass | 100% |
| Total | 25 files | 1,766 tests | β All Passing | 88.72% |
- β 63/63 production files have comprehensive test coverage (5 new Windows LAPS cmdlets added in v1.2.0)
- β 100% of all automated 1,435 test cases passing
- β 100% of all manual 331 test cases passing
- β
88.72% overall docs-scope line coverage β
modules/TierModel/*module scope ~91% (all above 80% CI gate);Audit-TierModel.ps1at 73.1% (new fail-fast/alignment paths need live-AD or PS<7 to exercise),Deploy-TierModel.ps1at 81.4% - β
Get-TierModelConditionalGroupNamesβ new function with full test coverage (6 unit tests) - β New in v1.2.0: Unit and integration test files for Windows LAPS (Unit.WinLapsAclOperations.Tests.ps1, Integration.WinLapsDeployment.Tests.ps1)
- β New in v1.2.1: UI & reliability bug fixes (BUG-001..011) β see CHANGELOG.
- β New in v1.2.2: English-language enforcement (#23) β fail-fast host-OS and Active Directory (en-US only) prerequisite checks (10 new unit tests); see Language Support.
- β Mock-based testing (no Active Directory connectivity required)
- β WhatIf support validation across all deployment operations
# Run all tests
.\tests\Invoke-AllTests.ps1
# Run unit tests only
.\tests\Invoke-AllTests.ps1 -TestType Unit
# Run integration tests only
.\tests\Invoke-AllTests.ps1 -TestType Integration
# Show only failures (useful for large test runs)
.\tests\Invoke-AllTests.ps1 -FailedOnly
# Run with detailed output
.\tests\Invoke-AllTests.ps1 -Detailed| Script | Purpose | Optional Features |
|---|---|---|
Deploy-TierModel.ps1 |
π Deploy with scoped execution | -IncludeMsa, -IncludeGmsa, -IncludeDmsa (Managed Service Account ACL delegation), -IncludeWinLaps (Windows LAPS ACL delegation + GPO decryptor) |
Audit-TierModel.ps1 |
π Audit and compliance checking | -IncludeMsa, -IncludeGmsa, -IncludeDmsa (Managed Service Account ACL audit), -IncludeWinLaps (Windows LAPS ACL + decryptor audit) |
Contributions are welcome β but this is a security-sensitive project, so we follow an issue-first process. Please read CONTRIBUTING.md before opening a pull request.
The process, in short:
- π£οΈ Open an issue first describing the problem or proposal β for any change (feature, fix, refactor, config, or docs).
- π§ Discuss and get maintainer agreement on scope and approach before writing code.
- π Then open a focused PR that links the agreed issue and implements only what was agreed.
β οΈ Pull requests without a linked, pre-agreed issue will be closed. Unsolicited new parameters, alternate deployment topologies, relaxed security validation, or bundled / reformat-heavy changes are rejected on sight β not to be unwelcoming, but because unreviewed changes to a tiering-security tool can silently weaken tier boundaries. See CONTRIBUTING.md for the full rationale.
When your PR is ready, it must also satisfy:
- β All Pester tests pass β the CI pipeline will reject any PR with failing tests
- π§ͺ New or updated tests are included β any new code or bug fix must include corresponding test cases to maintain or improve code coverage
- π Code coverage stays at or above 80% β the CI enforces a minimum coverage threshold; if your changes reduce coverage below 80%, add tests until coverage is restored
- π Documentation is updated for any new or changed functionality
- π― Code follows project conventions and keeps the diff focused (no unrelated reformatting)
Note: The packaging step will not produce a release artifact unless all tests pass and coverage meets the minimum threshold.
This project welcomes contributions and suggestions. Most contributions require you to agree to a Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us the rights to use your contribution. For details, visit Contributor License Agreements.
When you submit a pull request, a CLA bot will automatically determine whether you need to provide a CLA and decorate the PR appropriately (e.g., status check, comment). Simply follow the instructions provided by the bot. You will only need to do this once across all repos using our CLA.
This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact opencode@microsoft.com with any additional questions or comments.
# Clone repository
git clone https://github.com/microsoft/ActiveDirectoryTierModel.git
cd ActiveDirectoryTierModel
# Run tests locally before submitting a PR
.\tests\Invoke-AllTests.ps1- PowerShell: 7.0+
- Elevation: Administrator privileges required
- Domain Admin: Membership in Domain Admins group
- Modules: ActiveDirectory, GroupPolicy (see
config/dependencies.json) - Language: English (
en-US) only β both the host OS (the machine you run the scripts from) and Active Directory must be English (see Language Support)
For detailed prerequisite validation, run Test-TierModelPrerequisites
- β Frequently Asked Questions (FAQ)
- π¦ Dependencies Configuration
- ποΈ Configuration Schema
- π Changelog
Version: 1.2.2 | License: MIT | Status: β Production Ready
This project uses semantic versioning (MAJOR.MINOR.PATCH) and tag-based releases.
| Bump | When | Example |
|---|---|---|
PATCH (1.0.1) |
Bug fix, typo, doc correction | Fix broken ACL rule |
MINOR (1.1.0) |
New feature, backward-compatible | Add WinLAPS parameter |
MAJOR (2.0.0) |
Breaking change | Restructure config schema |
- Ensure all changes are merged to
mainand CI is green - Tag the release:
git tag v1.1.0 git push origin v1.1.0
- The CI pipeline will automatically:
- Run all tests and enforce code coverage (80% minimum)
- Create a
TierModel-1.1.0.ziprelease asset - Publish a GitHub Release with auto-generated release notes
You can also create a release from the GitHub UI: Releases β Create a new release β enter the tag name (e.g. v1.1.0).
This project may contain trademarks or logos for projects, products, or services. Authorized use of Microsoft trademarks or logos is subject to and must follow Microsoft's Trademark & Brand Guidelines. Use of Microsoft trademarks or logos in modified versions of this project must not cause confusion or imply Microsoft sponsorship. Any use of third-party trademarks or logos are subject to those third-party's policies.