Skip to content

Instantly share code, notes, and snippets.

@ScribbleGhost
Last active May 29, 2024 09:39
Show Gist options
  • Save ScribbleGhost/c5a09d20abb263877ce3b904254e6dff to your computer and use it in GitHub Desktop.
Save ScribbleGhost/c5a09d20abb263877ce3b904254e6dff to your computer and use it in GitHub Desktop.
A never-ending attempt to clean up the Windows 11 garbage. Tested and working ...for now. Please, for the love of God make it stop!
rem TITLE: Set taskbar alignment to the left
rem OPTIONS: 0x00000000 = Left 0x00000001 = Center
REG ADD "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /V "TaskbarAl" /T "REG_DWORD" /D "0x00000000" /F 1>NUL
rem TITLE: Hide the Task view button from the taskbar
rem OPTIONS: 0x00000000 = Hide 0x00000001 = Show
REG ADD "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /V "ShowTaskViewButton" /T "REG_DWORD" /D "0x00000000" /F 1>NUL
rem TITLE: Hide the Chat button from the taskbar
rem OPTIONS: 0x00000000 = Hide 0x00000001 = Show
REG ADD "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /V "TaskbarMn" /T "REG_DWORD" /D "0x00000000" /F 1>NUL
rem TITLE: Hide the Widgets button from the taskbar
rem OPTIONS: 0x00000000 = Hide 0x00000001 = Show
REG ADD "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /V "TaskbarDa" /T "REG_DWORD" /D "0x00000000" /F 1>NUL
rem TITLE: Hide the search bar from the taskbar
rem OPTIONS: 0x00000000 = Hide 0x00000001 = Show
REG ADD "HKCU\Software\Microsoft\Windows\CurrentVersion\Search" /V "SearchboxTaskbarMode" /T "REG_DWORD" /D "0x00000000" /F 1>NUL
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment