Jul 25 2021 03:25 PM
I need help on how to ungroup items on the Taskbar in Windows 11
Oct 16 2021 08:55 PM
Oct 17 2021 12:13 AM
Hi @NetboxGlobal,
Unfortunately, this feature is no longer available in Windows 11, however, you can give feedback to Microsoft with the Feedback Hub by pressing Win + F.
Oct 17 2021 12:46 AM
Oct 17 2021 11:18 PM
@SalmanAhmed but u need to install win 11 for make feedback on win11
so no thanks
i can wait a few years for upgrade
there are no point upgrade to a open beta test
the company i work for delayed win11 to 2024 (around 6000 users in 4 country)
Oct 18 2021 01:08 AM
Oct 18 2021 01:35 AM
I encourage you to test implementations on selected computers in the organization - to be up to date I think this is a good idea.
Best regards
Commercial previews for Windows 11 and Windows 10, version 21H2 - Microsoft Tech Community
Oct 21 2021 04:09 PM
Oct 21 2021 11:39 PM
Oct 24 2021 05:27 PM
@An microsoft please bring back the option to ungroup icons onthe task bar
Oct 25 2021 05:03 AM
Oct 26 2021 06:11 AM
Oct 27 2021 12:50 AM
Absolutely regret the decision to click upgrade to Windows 11 based on the lack of this feature. It's going to absolutely kill my productivity and I suspect I'll revert back to Windows 10 before the week is up
Oct 28 2021 07:36 PM
Oct 30 2021 02:10 PM
Oct 30 2021 11:26 PM - edited Oct 31 2021 10:12 PM
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/
Oct 31 2021 12:03 AM
@D2787 I absolutely agree!
Microsoft has been always famous for usability and for following user best practices.
I really hope unstack taskbar option will be reintroduced as in my ultrawide monitor the taskbar looks very tiny and silly.
It takes me a good 2-3 seconds every switch of window to find what I am looking for.
Otherwise I'll be forced to use a 3rd party hack.
Oct 31 2021 02:15 AM - edited Oct 31 2021 02:25 AM
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).
Oct 31 2021 03:44 AM - edited Nov 03 2021 02:58 AM
If you just upgraded to Windows 11, this script would work better (explorer is always slow when you restart it using that method.) I had the same experience...
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.
# Reset most System Apps
Set-ExecutionPolicy -ExecutionPolicy Bypass -Scope LocalMachine -Force;
Get-AppxPackage -allusers 1527c705-839a-4832-9118-54d4Bd6a0c89 | Reset-AppxPackage;
Get-AppxPackage -allusers c5e2524a-ea46-4f67-841f-6a9465d9d515 | Reset-AppxPackage;
Get-AppxPackage -allusers E2A4F912-2574-4A75-9BB0-0D023378592B | Reset-AppxPackage;
Get-AppxPackage -allusers F46D4000-FD22-4DB4-AC8E-4E1DDDE828FE | Reset-AppxPackage;
Get-AppxPackage -allusers Microsoft.AAD.BrokerPlugin | Reset-AppxPackage;
Get-AppxPackage -allusers Microsoft.AccountsControl | Reset-AppxPackage;
Get-AppxPackage -allusers Microsoft.AsyncTextService | Reset-AppxPackage;
Get-AppxPackage -allusers Microsoft.BioEnrollment | Reset-AppxPackage;
Get-AppxPackage -allusers Microsoft.CredDialogHost | Reset-AppxPackage;
Get-AppxPackage -allusers Microsoft.ECApp | Reset-AppxPackage;
Get-AppxPackage -allusers Microsoft.LockApp | Reset-AppxPackage;
Get-AppxPackage -allusers Microsoft.MicrosoftEdgeDevToolsClient | Reset-AppxPackage;
Get-AppxPackage -allusers Microsoft.Win32WebViewHost | Reset-AppxPackage;
Get-AppxPackage -allusers Microsoft.Windows.Apprep.ChxApp | Reset-AppxPackage;
Get-AppxPackage -allusers Microsoft.Windows.CallingShellApp | Reset-AppxPackage;
Get-AppxPackage -allusers Microsoft.Windows.CapturePicker | Reset-AppxPackage;
Get-AppxPackage -allusers Microsoft.Windows.CloudExperienceHost | Reset-AppxPackage;
Get-AppxPackage -allusers Microsoft.Windows.ContentDeliveryManager | Reset-AppxPackage;
Get-AppxPackage -allusers Microsoft.Windows.NarratorQuickStart | Reset-AppxPackage;
Get-AppxPackage -allusers Microsoft.Windows.OOBENetworkCaptivePortal | Reset-AppxPackage;
Get-AppxPackage -allusers Microsoft.Windows.OOBENetworkConnectionFlow | Reset-AppxPackage;
Get-AppxPackage -allusers Microsoft.Windows.PeopleExperienceHost | Reset-AppxPackage;
Get-AppxPackage -allusers Microsoft.Windows.PinningConfirmationDialog | 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 Microsoft.Windows.XGpuEjectDialog | Reset-AppxPackage;
Get-AppxPackage -allusers Microsoft.WindowsNotepad | Reset-AppxPackage;
Get-AppxPackage -allusers MicrosoftWindows.Client.CBS | Reset-AppxPackage;
Get-AppxPackage -allusers MicrosoftWindows.Client.WebExperience | Reset-AppxPackage;
Get-AppxPackage -allusers MicrosoftWindows.UndockedDevKit | Reset-AppxPackage;
Get-AppxPackage -allusers NcsiUwpApp | Reset-AppxPackage;
Get-AppxPackage -allusers Windows.CBSPreview | Reset-AppxPackage;
Get-AppxPackage -allusers windows.immersivecontrolpanel | Reset-AppxPackage;
Get-AppxPackage -allusers Windows.PrintDialog | Reset-AppxPackage;
# 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;
Oct 31 2021 05:17 AM
Oct 31 2021 10:06 PM
@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;