From 8f7b55b4140862e557436c78fcd980e960857487 Mon Sep 17 00:00:00 2001 From: USER Date: Thu, 21 Aug 2025 16:54:25 +0100 Subject: [PATCH] . --- PS/ShowAppIcons.ps1 | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 PS/ShowAppIcons.ps1 diff --git a/PS/ShowAppIcons.ps1 b/PS/ShowAppIcons.ps1 new file mode 100644 index 0000000..d4b88f0 --- /dev/null +++ b/PS/ShowAppIcons.ps1 @@ -0,0 +1,8 @@ +Set-StrictMode -Version 'latest' +if (Test-Path -Path 'HKCU:\Control Panel\NotifyIconSettings') +{ + Get-ChildItem -Path 'HKCU:\Control Panel\NotifyIconSettings' | + ForEach-Object { + Set-ItemProperty -Path ($_.PSPath) -ErrorAction SilentlyContinue -Name 'IsPromoted' -Value 0x00000001 + } +}