How to COMPLETELY uninstall Visual Studio Code from Windows 10?

Here are the default paths where Visual Studio Code Insider saves files:

  • Installation path:
"%LocalAppData%\Programs\Microsoft VS Code Insiders"
  • User settings and preferences:
"%UserProfile%\.vscode-insiders"
"%AppData%\Code - Insiders"
"%AppData%\Visual Studio Code - Insiders"
  • Shortcut folder:
"%AppData%\Microsoft\Windows\Start Menu\Programs\Visual Studio Code - Insiders"

These folder save the last user session and settings/preferences. Delete those to remove old settings/preferences. If you are concerned about the remaining files after installation you may use VSCode from the portable ZIP files. Here are the direct download links extracted from VSCode alternative downloads:

  • 32 bit stable: https://vscode-update.azurewebsites.net/latest/win32-archive/stable
  • 32 bit insider: https://vscode-update.azurewebsites.net/latest/win32-archive/insider
  • 64 bit stable: https://vscode-update.azurewebsites.net/latest/win32-x64-archive/stable
  • 64 bit insider: https://vscode-update.azurewebsites.net/latest/win32-x64-archive/insider

After uninstalling vscode, remove:

  • %UserProfile%\.vscode
  • %AppData%\Code
  • %LocalAppData%\Programs\Microsoft VS Code

I was having the exact issues...

My reason for trying to do a full uninstall of Visual Studio Code was because I was having issues writing code, especially HTML codes. When I type at least 2 letters, the cursor automatically skips to the end of the page and all subsequent letters that I type is written after the HTML close tag.

...
    <p> this i </p>
 </body>
</html>s only to show the problem I was having with Visual Studio Code

I also tried uninstalling VS Code but everything remains the same and I kept having the same issues. Unlike other softwares, the uninstall application for VS Code doesn't uninstall also the components (extensions and settings). It only removes the VS Code software.

What I did was to permanently delete any and all folder that has "VS" or "Visual Studio". You also need to check "Microsoft" folders because "VS Code" folders can be found there. After doing all that you definitely want to delete a folder with the name ".vscode" and you can find in your "home" folder. The reason why your workspace remains the same is because all your previous extensions and settings are stored in that folder.

.vscode Extension

I sincerely hope I've been helpful to someone.