Disassembler0 / Win10-Initial-Setup-Script

PowerShell script for automation of routine tasks done after fresh installations of Windows 10 / Server 2016 / Server 2019
MIT License
4.69k stars 1.08k forks source link

someone knows how to rollback the taskbar icons? #268

Closed beranos closed 4 years ago

beranos commented 4 years ago

hi, does someone know how i can rollback the taskbar icons? i don't like them being flatted out. also saw this issues but the OP closed it so no one could reply to it, here's the link: https://github.com/Disassembler0/Win10-Initial-Setup-Script/issues/181

Disassembler0 commented 4 years ago

Icon size is set by ShowSmallTaskbarIcons / ShowLargeTaskbarIcons tweaks.

Combining is set by SetTaskbarCombineWhenFull / SetTaskbarCombineNever / SetTaskbarCombineAlways.

To rollback the taskbar icon settings and make them look like on a freshly installed system, run ShowLargeTaskbarIcons and SetTaskbarCombineAlways.

beranos commented 4 years ago

i tried running those with powershell.exe -NoProfile -ExecutionPolicy Bypass -File Win10.ps1 -include Win10.psm1 RequireAdmin SetTaskbarCombineAlways and powershell.exe -NoProfile -ExecutionPolicy Bypass -File Win10.ps1 -include Win10.psm1 RequireAdmin ShowLargeTaskbarIcons

but the taskbar icons are still flatted out

Disassembler0 commented 4 years ago

Did you log out and log back in afterwards, so the changes are taken into effect? If so, then I probably don't understand what you mean by "flatted out". A screenshot might help.

Nevertheless, these tweaks are done on per-user basis, so you can simply change whatever you like via right clicking the taskbar and going to Taskbar settings. The tweaks do the same as manually modifying Use small taskbar buttons and Combine taksbar buttons options.

beranos commented 4 years ago

logging out and logging back fixed it! thank you