How to completely uninstall VS Code on Windows?

  1. Open Run (Win + R)
  2. Type %appdata%
  3. Press Enter
  4. Delete the folder Code

Voila! Restart Visual Studio Code and it is reset!

Here is a bat script which does the same thing:

explorer.exe %appdata%
del Code

Leave a Comment