From c54e4b018448a810100e1404ca461e935fd4fa97 Mon Sep 17 00:00:00 2001 From: Markus Fleschutz Date: Wed, 20 Nov 2024 15:46:36 +0100 Subject: [PATCH] Updated enable-god-mode.ps1 --- scripts/enable-god-mode.ps1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/enable-god-mode.ps1 b/scripts/enable-god-mode.ps1 index 03a83f56..ae243aa4 100755 --- a/scripts/enable-god-mode.ps1 +++ b/scripts/enable-god-mode.ps1 @@ -5,7 +5,7 @@ This PowerShell script enables the god mode in Windows. It adds a new icon to the desktop. .EXAMPLE PS> ./enable-god-mode.ps1 - ✔ God mode enabled, please click the new desktop icon + ✔ God mode enabled - just double-click the new desktop icon. .LINK https://github.com/fleschutz/PowerShell .NOTES @@ -19,7 +19,7 @@ try { ItemType = 'Directory' } $null = New-Item @GodModeSplat - "✅ God mode enabled, please click the new desktop icon" + "✅ God mode enabled - just double-click the new desktop icon." exit 0 # success } catch { "⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"