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]) {