| Vortal • Zarejestruj • FAQ • Zaloguj |
Windows Taskbar Icons Size High Quality Official$path = "HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" Set-ItemProperty -Path $path -Name "TaskbarSmallIcons" -Value 1 Stop-Process -Name explorer -Force To revert: Set-ItemProperty -Path $path -Name "TaskbarSmallIcons" -Value 0 Stop-Process -Name explorer -Force For Windows 11 (unsupported, use with caution): windows taskbar icons size |