Forum Discussion
NetboxGlobal
Jul 25, 2021Iron Contributor
Ungroup items on the Taskbar in Windows 11
I need help on how to ungroup items on the Taskbar in Windows 11
Mousefluff
Oct 31, 2021Iron Contributor
Open Powershell -> Start Menu -> Run -> taskmgr -> File -> Run new Task -> %SystemRoot%\System32\WindowsPowerShell\v1.0\powershell.exe -> Select "Create this task with administrative privileges." -> Click OK.
Set-ExecutionPolicy -ExecutionPolicy Bypass -Scope LocalMachine -Force
# Restore the Classic Taskbar in Windows 11
New-ItemProperty -Path "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Shell\Update\Packages" -Name "UndockingDisabled" -PropertyType DWord -Value "00000001";
Set-ItemProperty -Path "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Shell\Update\Packages" -Name "UndockingDisabled" -Value "00000001";
# Disable Taskbar / Cortana Search Box on Windows 11
New-ItemProperty -Path "HKCU:\Software\Microsoft\Windows\CurrentVersion\Search" -Name "SearchboxTaskbarMode" -PropertyType DWord -Value "00000000";
Set-ItemProperty -Path "HKCU:\Software\Microsoft\Windows\CurrentVersion\Search" -Name "SearchboxTaskbarMode" -Value "00000000";
# Ungroup Taskbar Icons / Enable Text Labels in Windows 11
New-ItemProperty -Path "HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\Explorer" -Name "NoTaskGrouping" -PropertyType DWord -Value "00000001";
Set-ItemProperty -Path "HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\Explorer" -Name "NoTaskGrouping" -Value "00000001";
./taskkill /f /im explorer.exe;
./CMD /Q /C START /REALTIME explorer.exe;
Run this to reverse the changes...
Set-ItemProperty -Path "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Shell\Update\Packages" -Name "UndockingDisabled" -Value "00000000"
Set-ItemProperty -Path "HKCU:\Software\Microsoft\Windows\CurrentVersion\Search" -Name "SearchboxTaskbarMode" -Value "00000001";
Set-ItemProperty -Path "HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\Explorer" -Name "NoTaskGrouping" -Value "00000000";
./taskkill /f /im explorer.exe;
./CMD /Q /C START /REALTIME explorer.exe;
https://winaero.com/how-to-restore-classic-start-menu-in-windows-11-and-get-back-live-tiles/
- myahmedmerzaDec 24, 2022Copper Contributordears, i tried but failed, when reversed back i have problem with search in start menu as it can type letter or two then stopped, can you help me?
- myahmedmerzaDec 23, 2022Copper Contributorafter reverse changes, i have problem with searching in start menu
- xjikkaOct 31, 2021Copper Contributor
The right key is:
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Shell\Update\Packages
New DWORD value UndockingDisabled set to 1
+ restart explorer
As described here: https://winaero.com/how-to-restore-classic-start-menu-in-windows-11-and-get-back-live-tiles/Edit: But it is unusable [by me, maybe somewhere it works OK]. After enabling that property, the Start menu doesn't work (it is not showed anymore) and explorer starting very slow. If I set UndockingDisabled back to 0, Start menu works again (but with icon grouping).
- MousefluffNov 01, 2021Iron Contributor
xjikkaTry this instead (it didn't let me post last time.) Restarting explorer is ALWAYS slow...
Set-ExecutionPolicy -ExecutionPolicy Bypass -Scope LocalMachine -Force New-ItemProperty -Path "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Shell\Update\Packages" -Name "UndockingDisabled" -PropertyType DWord -Value "00000001"; Set-ItemProperty -Path "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Shell\Update\Packages" -Name "UndockingDisabled" -Value "00000001"; New-ItemProperty -Path "HKCU:\Software\Microsoft\Windows\CurrentVersion\Search" -Name "SearchboxTaskbarMode" -PropertyType DWord -Value "00000000"; Set-ItemProperty -Path "HKCU:\Software\Microsoft\Windows\CurrentVersion\Search" -Name "SearchboxTaskbarMode" -Value "00000000"; New-ItemProperty -Path "HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\Explorer" -Name "NoTaskGrouping" -PropertyType DWord -Value "00000001"; Set-ItemProperty -Path "HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\Explorer" -Name "NoTaskGrouping" -Value "00000001"; Get-AppxPackage -allusers 1527c705-839a-4832-9118-54d4Bd6a0c89 | Reset-AppxPackage; Get-AppxPackage -allusers c5e2524a-ea46-4f67-841f-6a9465d9d515 | Reset-AppxPackage; Get-AppxPackage -allusers F46D4000-FD22-4DB4-AC8E-4E1DDDE828FE | Reset-AppxPackage; Get-AppxPackage -allusers Microsoft.Windows.Search | Reset-AppxPackage; Get-AppxPackage -allusers Microsoft.Windows.ShellExperienceHost | Reset-AppxPackage; Get-AppxPackage -allusers Microsoft.Windows.StartMenuExperienceHost | Reset-AppxPackage; Get-AppxPackage -allusers MicrosoftWindows.Client.CBS | Reset-AppxPackage; Get-AppxPackage -allusers Windows.CBSPreview | Reset-AppxPackage; Get-AppxPackage -allusers windows.immersivecontrolpanel | Reset-AppxPackage; Get-AppxPackage -allusers Windows.PrintDialog | Reset-AppxPackage; ./taskkill /f /im explorer.exe; ./CMD /Q /C START /REALTIME explorer.exe;
- xjikkaNov 01, 2021Copper Contributor
Mousefluffthank You. Registry changes doesn't helped. Same result: Start Menu does not work /is not showed/ and Explorer is starting in about 1-2 minutes. Installing other packages I did not tried. I need this simply revertable (meaning only acceptable are registry changes). I'm developer, and I must test my applications in "standard W11 Environment" our Customers have. Anyway, thank You. I'm using last standard official W11 version with all the updates installed.
- francebbOct 31, 2021Copper ContributorC'mon Microsoft. It's been a while now. Bring the ungroup items in the taskbar option back. We're literally begging you