14387 shaares
5333 private links
5333 private links
Make win10 taskbar buttons Never combine, hide labels Normally, this option isn't available //
These registry values are later read and translated into a hide bit and combine bit by explorer.exe. The function responsible for that translation looks like ... //
Now, we'd like to "Never combine, hide labels", one way to achieve this is to modify the bits set by one of the existing options, which is what I've done. Changing the instruction
explorer.exe+575ED - BB 01000000 - mov ebx,00000001
to
explorer.exe+575ED - BB 02000000 - mov ebx,00000002
This replaces the option Combine when taskbar is full with the behavior we want.