This commit is contained in:
USER
2025-08-21 18:13:24 +01:00
parent 8f7b55b414
commit cac350524d
2 changed files with 121 additions and 0 deletions

8
PS/pShowAppIcons.ps1 Normal file
View File

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