.
This commit is contained in:
8
PS/ShowAppIcons.ps1
Normal file
8
PS/ShowAppIcons.ps1
Normal 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
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user