A PowerShell module that builds a Temple in honour of Dark mode in Procmon.
This was promised to Mark Russinovich after hours burning my eyes staring at Procmon logs Twitter Thread
- Renders ASCII art temple with custom colours
- Easy to use and extend
- Cross-platform support (Windows, Linux, macOS)
Install-Module -Name MarksTemple -Scope CurrentUser
git clone https://github.com/PowerShellYoungTeam/Marks-Temple.git cd Marks-Temple
Import-Module ./src/MarksTemple/MarksTemple.psm1
Build-MarksTemple
Build-MarksTemple -ForeGroundColour Red -BackGroundColour White
Build-MarksTemple -TemplePath 'C:\Custom\Temple.txt'
The module supports all standard PowerShell console colors:
Black DarkBlue DarkGreen DarkCyan DarkRed DarkMagenta DarkYellow Gray DarkGray Blue Green Cyan Red Magenta Yellow White
Prerequisites PowerShell 5.1 or later Pester (for running tests) Running Tests
Invoke-Pester -Path tests
To increment the version:
# For patch version (0.0.x)
./build/Update-Version.ps1 -BumpType Patch
# For minor version (0.x.0)
./build/Update-Version.ps1 -BumpType Minor
# For major version (x.0.0)
./build/Update-Version.ps1 -BumpType Major
Pull requests are welcome. Please add tests for new features.
Fork the repository Create your feature branch (git checkout -b feature/amazing-feature) Commit your changes (git commit -m 'Add some amazing feature') Push to the branch (git push origin feature/amazing-feature) Open a Pull Request
MIT