Set "never combine" in Windows 7 using the registry?

8

How do i set task bar buttons to "never combine" using the registry?

Simon

Posted 2010-04-27T00:30:42.057

Reputation: 1 957

Answers

9

You're looking for the "never group taskbar buttons" feature.

HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced\TaskbarGlomLevel = 00000002

See KnifeySpoony's comment on an article about Windows 7 taskbar buttons at HowToGeek for more information.

TaskbarGlomLevel – Changes the grouping so that the windows do not turn into squares and overlap each other. They will still group if you have too many windows open. If you want to never group windows, change this value to 00000002.

rob

Posted 2010-04-27T00:30:42.057

Reputation: 13 188

Could you post this in .reg file form? Thanks! – Aaron Franke – 2017-02-17T16:29:14.913

1

@Aaron Franke Paste the contents of https://www.pastiebin.com/58b988beb8aea into a REG file. That should also set the option for all monitors on Windows 10.

– mythofechelon – 2017-03-03T15:17:31.820

3

Standing on the shoulders of Rob:

Via powershell (src):

#http://superuser.com/questions/135015
$taskbarButtonsRegKey = 'HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced'
if (((Get-ItemProperty -path $taskbarButtonsRegKey ).TaskbarGlomLevel ) -Ne 2)
{
    Set-ItemProperty -Path $taskbarButtonsRegKey -Name "TaskbarGlomLevel" -Value 00000002
}

Via chocolatey (package):

choco install taskbar-never-combine

fiat

Posted 2010-04-27T00:30:42.057

Reputation: 1 311

You may have to run Set-ExecutionPolicy RemoteSigned first as per this answer: https://stackoverflow.com/questions/4037939/powershell-says-execution-of-scripts-is-disabled-on-this-system

– Aaron Franke – 2017-02-17T18:10:56.807