Defina “nunca combinar” no Windows 7 usando o registro?

8

Como faço para definir os botões da barra de tarefas para "nunca combinar" usando o registro?

    
por Simon 27.04.2010 / 02:30

2 respostas

9

Você está procurando o recurso "Nunca agrupar botões da barra de tarefas".

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

Veja o comentário de KnifeySpoony em um artigo sobre os botões da barra de tarefas do Windows 7 em HowToGeek para mais informações.

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.

    
por 27.04.2010 / 04:02
3

De pé sobre os ombros de Rob:

Por meio do 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 ( pacote ):

choco install taskbar-never-combine
    
por 01.04.2016 / 00:49