🛡️

EntraComplianceAuditor

Audit Microsoft Entra tenant configuration against compliance baselines from PowerShell.

⬇️ 0 Downloads
🏷️ v0.0.0 Version
📜 MIT License
Install: Install-Module -Name EntraComplianceAuditor
⬇️ PowerShell Gallery View on GitHub

Documentation

Overview

EntraComplianceAuditor helps you assess Microsoft Entra configuration against security and compliance expectations. It is intended for administrators who want repeatable checks they can run from PowerShell in local workflows or CI/CD pipelines.


Installation

Install from the PowerShell Gallery:

# Install for current user
Install-Module -Name EntraComplianceAuditor -Scope CurrentUser

# Import
Import-Module EntraComplianceAuditor

Quick Start

Import-Module EntraComplianceAuditor

# Discover available commands
Get-Command -Module EntraComplianceAuditor

# Read command help with examples
Get-Help -Name (Get-Command -Module EntraComplianceAuditor | Select-Object -First 1).Name -Detailed

Typical Usage Pattern

  1. Connect to your Microsoft Entra environment.
  2. Run the module’s audit commands for your tenant.
  3. Review findings and recommended actions.
  4. Track improvements by repeating checks regularly.

Contributing

Contributions are welcome! See the GitHub repository for details.


License

EntraComplianceAuditor is released under the MIT License.

Related Blog Posts