Changes between Version 110 and Version 111 of Windows Eleven Tweeks


Ignore:
Timestamp:
04/13/25 07:01:13 (6 days ago)
Author:
Paul Kulda
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Windows Eleven Tweeks

    v110 v111  
    576576reg add HKEY_CURRENT_USER\Software\Classes\CLSID\{e88865ea-0e1c-4e20-9aa6-edcd0212c87c} /f /v "System.IsPinnedToNameSpaceTree" /t REG_DWORD /d 0x00000000
    577577}}}
     578
     579== Show ALL Icons ==
     580
     581{{{
     582Powershell
     583
     584$RegistryPath = 'HKCU:\Control Panel\NotifyIconSettings'
     585$Name = 'IsPromoted'
     586$Value = '1'
     587Get-ChildItem -path $RegistryPath -Recurse | ForEach-Object {New-ItemProperty -Path $_.PSPath -Name $Name -Value $Value -PropertyType DWORD -Force }
     588
     589}}}