From 4d3b0490330650a5ba697bb1ff5c4a56d172b2e7 Mon Sep 17 00:00:00 2001 From: Stephan Yelle Date: Wed, 28 May 2025 23:29:33 -0400 Subject: [PATCH] Update StackMonkey.ps1 --- StackMonkey.ps1 | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/StackMonkey.ps1 b/StackMonkey.ps1 index 9cb5a75..fbe96a5 100644 --- a/StackMonkey.ps1 +++ b/StackMonkey.ps1 @@ -13,6 +13,7 @@ #endregion +# STACK = Scripted Tooling for Automated Client Kickoff # MONKEY = Module-based Onboarding & Next-step Kickoff Engine Yoke # Conveys the idea of coupling tasks together and keeping them under control. #region Config & Task Definitions @@ -83,7 +84,7 @@ function Write-LogHelper { [int]$CustomEventID ) $EventID = @{ Info=1000; Warning=2000; Error=3000; Success=4000; General=1000 }[$Level] - $Icon = @{ Info="📝"; Warning="⚠️"; Error="❌"; Success="✅"; General="📦" }[$Level] + $Icon = @{Info=[System.Char]::ConvertFromUtf32(0x1F4CB);Warning=[char]0x26A0;Error=[char]0x274C;Success=[char]0x2705;General=[char]0x1F4E6}[$Level] $logEntry = [PSCustomObject]@{ Timestamp = (Get-Date).ToString("yyyy-MM-dd HH:mm:ss") Level = $Level