Curated Examples
Add Spectre rules
Use ConsoleMonster to add colored rule separators to console output.
This pattern is useful when an operator script needs readable sections.
It is adapted from Examples/Example-SpectreRules.ps1.
Example
Import-Module ConsoleMonster
New-SpectreRule -Text 'Inventory', 'centered' -Color Yellow, Green -RuleColor Blue
New-SpectreRule -Text 'Remediation', 'left aligned' -Color Yellow, Green -RuleColor Blue -Align Left
What this demonstrates
- adding visual separators to console output
- using text and rule colors deliberately
- keeping a console script easier to scan