Files
wLocal/PS/ShowAppIcons.ps1
USER 8f7b55b414 .
2025-08-21 16:54:25 +01:00

9 lines
303 B
PowerShell

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
}
}