Hi expert,
I have a script for the Windows 11 UI, which is functioning well. I've also discovered a script for the Windows 10 UI that closely resembles the Windows 11 UI. I want to confirm if this Windows 10 UI script will meet the requirements similar to the Windows 11 UI script. Please advise. My objective is to design a Windows 10 UI with the following settings: would request if you can test it in your test environment. Thank you
Search: Icon Only
Widgets: Off
Chat: Off
Taskbar Alignment: Left
Copilot: Off"
Win11 UI Script (working fine) –
#turn off Chat
REG ADD "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /f /v TaskbarMn /t REG_DWORD /d 0
#turn off Widgets
REG ADD "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /f /v TaskbarDa /t REG_DWORD /d 0
#change Search : Icon only
REG ADD "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Search" /f /v SearchboxTaskbarMode /t REG_DWORD /d 1
#change Taskbar Alignment: Left
REG ADD "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /f /v TaskbarAl /t REG_DWORD /d 0
REG ADD "HKEY_CURRENT_USER\Software\Policies\Microsoft\Windows\WindowsCopilot" /f /v TurnOffWindowsCopilot /t REG_DWORD /d 1
I found this script for win10 but not sure it meet requirements similar to the Windows 11 UI script
####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