setting small taskbar icons

This commit is contained in:
dado
2025-10-18 16:09:11 +02:00
parent b61933fc31
commit cbaac31ee8

View File

@@ -58,6 +58,12 @@ foreach ($path in $RegistryPaths[0..1]) {
New-ItemProperty -Path $path -Name "TaskbarAl" -Value 0 -Type DWORD -Force | Out-Null
}
# Show smaller taskbar button
Write-Host -ForegroundColor DarkGray ">>> Show smaller taskbar button <<<"
foreach ($path in $RegistryPaths[0..1]) {
New-ItemProperty -Path $path -Name "TaskbarSmallIcons" -Value 1 -Type DWORD -Force | Out-Null
}
# Hide TaskView button
Write-Host -ForegroundColor DarkGray ">>> Hide TaskView button <<<"
foreach ($path in $RegistryPaths[0..1]) {