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