Skip to content

Instantly share code, notes, and snippets.

@bytespec
Created July 20, 2024 00:51
Show Gist options
  • Save bytespec/ea428a6f2453742e7a083b2e33f30cfc to your computer and use it in GitHub Desktop.
Save bytespec/ea428a6f2453742e7a083b2e33f30cfc to your computer and use it in GitHub Desktop.
Windows 11 - enable all tray icons
Get-ChildItem -Path "HKCU:\Control Panel\NotifyIconSettings" | Where-Object {
($_ | Get-ItemProperty -Name "IsPromoted" | Select-Object -ExpandProperty "IsPromoted") -eq 0
} | ForEach-Object {
$_ | Set-ItemProperty -Name "IsPromoted" -Value 1
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment