Project

Testimo

Testimo is a PowerShell module for running health checks for Active Directory against a bunch of different tests

Stars635
Forks73
Open issues54
PowerShell Gallery downloads133059
Releasev0.0.90
Language: PowerShell Updated: 2026-02-14T21:45:36.0000000+00:00

Curated Examples

Run selected checks

Use Testimo to run a focused set of Active Directory checks.

This pattern is useful when you need a targeted health check instead of a broad report.

It is adapted from the source examples under Example/.

When to use this pattern

  • You know which Testimo sources matter for the current review.
  • You want console output or objects that can be inspected after the run.
  • The run should stay scoped to a manageable set of checks.

Example

Import-Module Testimo

$sources = @(
    'ForestRoles'
    'ForestOptionalFeatures'
    'DomainPasswordComplexity'
    'DomainKerberosAccountAge'
)

Invoke-Testimo -Sources $sources -PassThru -HideHTML

What this demonstrates

  • selecting specific health-check sources
  • returning objects for follow-up processing
  • suppressing browser display when the run is part of automation

Source