Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save shelllee/2d99ede7b8f55e99cbc0362b8bf362ff to your computer and use it in GitHub Desktop.
Save shelllee/2d99ede7b8f55e99cbc0362b8bf362ff 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