Need to apply taskbar UI setting on win 10 devices

TechUST 601 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 for business Windows Client for IT Pros User experience Other
Microsoft Security Intune Other
Microsoft System Center Other
{count} votes

1 answer

Sort by: Most helpful
  1. Wesley Li 11,245 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


Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.