Windows Old Style
Here is a compiled list of PowerShell lines to enable customization like Dark Mode, Start Menu Left, Old Style right click menu, etc.
# ---------------------------------------
# Set Dark Mode Win 11
# ---------------------------------------
Set-ItemProperty -Path "HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\Themes\Personalize" -Name AppsUseLightTheme -Value 0 -Type Dword -Force
Set-ItemProperty -Path "HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\Themes\Personalize" -Name SystemUsesLightTheme -Value 0 -Type Dword -Force
# ---------------------------------------
# Removes Task View from the Taskbar
# ---------------------------------------
New-itemproperty -Path "HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" -Name "ShowTaskViewButton" -Value "0" -PropertyType Dword -Force
# ---------------------------------------
# Removes Widgets from the Taskbar
# ---------------------------------------
New-itemproperty -Path "HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" -Name "TaskbarDa" -Value "0" -PropertyType Dword -Force
# ---------------------------------------
# Removes Chat from the Taskbar
# ---------------------------------------
New-itemproperty -Path "HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" -Name "TaskbarMn" -Value "0" -PropertyType Dword -Force
# ---------------------------------------
# Default StartMenu alignment 0=Left
# ---------------------------------------
New-itemproperty -Path "HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" -Name "TaskbarAl" -Value "0" -PropertyType Dword -Force
# ---------------------------------------
# Removes search from the Taskbar
# ---------------------------------------
New-itemproperty -Path "HKCU:\Software\Microsoft\Windows\CurrentVersion\Search" -Name "SearchboxTaskbarMode" -Value "0" -PropertyType Dword -Force
# ---------------------------------------
# Disable Right Click context Menu win 11 style
# ---------------------------------------
reg.exe add "HKCU\Software\Classes\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}\InprocServer32" /f /ve
# ---------------------------------------
# Set Default Time Zone
# ---------------------------------------
Set-TimeZone -Name "Eastern Standard Time" Last updated
Was this helpful?