Changes between Version 110 and Version 111 of Windows Eleven Tweeks
- Timestamp:
- 04/13/25 07:01:13 (6 days ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Windows Eleven Tweeks
v110 v111 576 576 reg add HKEY_CURRENT_USER\Software\Classes\CLSID\{e88865ea-0e1c-4e20-9aa6-edcd0212c87c} /f /v "System.IsPinnedToNameSpaceTree" /t REG_DWORD /d 0x00000000 577 577 }}} 578 579 == Show ALL Icons == 580 581 {{{ 582 Powershell 583 584 $RegistryPath = 'HKCU:\Control Panel\NotifyIconSettings' 585 $Name = 'IsPromoted' 586 $Value = '1' 587 Get-ChildItem -path $RegistryPath -Recurse | ForEach-Object {New-ItemProperty -Path $_.PSPath -Name $Name -Value $Value -PropertyType DWORD -Force } 588 589 }}}