Skip to content

Instantly share code, notes, and snippets.

@PleahMaCaka
Last active December 17, 2022 16:54
Show Gist options
  • Save PleahMaCaka/49fbb5755198fabef3c3d3b36b832959 to your computer and use it in GitHub Desktop.
Save PleahMaCaka/49fbb5755198fabef3c3d3b36b832959 to your computer and use it in GitHub Desktop.

※ PowerShell (Admin) needed ※

Before -> After

Before After

AIO

One-Line Enable

reg.exe add HKCU\Software\Classes\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}\InprocServer32 /f /ve && taskkill /f /im explorer.exe && explorer

One-Line Disable

reg.exe delete HKCU\Software\Classes\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2} /f && taskkill /f /im explorer.exe && explorer

One-By-One

Enable

  • reg.exe add “HKCU\Software\Classes\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}\InprocServer32” /f /ve

  • taskkill /f /im explorer.exe

  • explorer

Disable

  • reg.exe delete “HKCU\Software\Classes\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}” /f

  • taskkill /f /im explorer.exe

  • explorer

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment