From cbaac31ee8d3a5e6ec063e0d0c241600f17ff14e Mon Sep 17 00:00:00 2001 From: dado Date: Sat, 18 Oct 2025 16:09:11 +0200 Subject: [PATCH] setting small taskbar icons --- configwinpc.ps1 | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/configwinpc.ps1 b/configwinpc.ps1 index 7c08591..f874b44 100644 --- a/configwinpc.ps1 +++ b/configwinpc.ps1 @@ -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]) {