Need to apply taskbar UI setting on win 10 devices

TechUST 516 Reputation points
2024-02-05T21:57:20.3433333+00:00

Hi expert, I need a script built to accommodate the Win10 UI changes, for the taskbar.  

Search: Icon Only

Widgets: Off

Chat: Off

Taskbar Alignment: Left

  I have applied this on win11, will it applicable on win10 as well or these registry entry specific work for win11, i have gone through multiple articles but not found anything related to this for windows 10. if these registry entries applicable for window 10 , is there any group policy created in windows 10 machines.

Would appreciate if you can share any reference article.

HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced \TaskbarMn(0)

"HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced\ TaskbarDa (0)

HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Search\ SearchboxTaskbarMode (1)

HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced\ TaskbarAl (0)

 

Windows 10
Windows 10
A Microsoft operating system that runs on personal computers and tablets.
11,195 questions
Windows
Windows
A family of Microsoft operating systems that run across personal computers, tablets, laptops, phones, internet of things devices, self-contained mixed reality headsets, large collaboration screens, and other devices.
5,099 questions
Microsoft System Center
Microsoft System Center
A suite of Microsoft systems management products that offer solutions for managing datacenter resources, private clouds, and client devices.
907 questions
Microsoft Intune
Microsoft Intune
A Microsoft cloud-based management solution that offers mobile device management, mobile application management, and PC management capabilities.
4,743 questions
{count} votes

1 answer

Sort by: Most helpful
  1. Wesley Li 6,760 Reputation points
    2024-02-08T01:25:06.98+00:00

    Hello Try to run the following command line in powershell then check. It will reboot the machine automatically. ####taskbar location### $Settings = (Get-ItemProperty HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\StuckRects3 -Name Settings).Settings $Settings[12] = 0x00 Set-ItemProperty HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\StuckRects3 -Name Settings -Value $Settings ####search icon only### reg add "HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Search" /v "SearchboxTaskbarMode" /t "REG_DWORD" /d "1" /f ####widgets off### reg add "HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Feeds" /v "ShellFeedsTaskbarViewMode" /t "REG_DWORD" /d "2" /f ####chat off### reg add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v "TaskbarMn" /t "REG_DWORD" /d "0" /f shutdown /r /t 0