Skip to content

Instantly share code, notes, and snippets.

@adamalbers
Created January 25, 2022 18:54
Show Gist options
  • Save adamalbers/f0a7317d346a84917c58584c4149ec69 to your computer and use it in GitHub Desktop.
Save adamalbers/f0a7317d346a84917c58584c4149ec69 to your computer and use it in GitHub Desktop.
Make Windows 11 act like Windows 10.
#Disable new context menu:
reg.exe add "HKCU\Software\Classes\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}\InprocServer32" /f /ve
#Restore new context menu:
reg.exe delete "HKCU\Software\Classes\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}" /f
#Disable Explorer command bar:
reg.exe add "HKCU\Software\Classes\CLSID\{d93ed569-3b3e-4bff-8355-3c44f6a52bb5}\InprocServer32" /f /ve
#Restore Explorer command bar:
reg.exe delete "HKCU\Software\Classes\CLSID\{d93ed569-3b3e-4bff-8355-3c44f6a52bb5}" /f
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment