How to COMPLETELY uninstall Visual Studio Code from Windows 10

11

4

Seriously, its hyper frustrating that after 35 years making software, Microsoft doesn't knows yet how to uninstall a program

I'm trying to uninstall Visual Studio Code, yes, this question is similar to https://stackoverflow.com/questions/47689536/uninstall-visual-studio-code-in-windows but answers are partial and incorrect.

I have done, uninstall using the control panel. Then uninstall everything in %appdata%\code, then deleting %USERPROFILE%.vs... (it's different path if you use visual studio code or visual studio code insiders)

No matter what, after I install the program again, it will show my environment just as it was before doing all this.

So, how do you uninstall completely, to do a fresh VS Code installation without installing Windows 10 from scratch?

luisfer

Posted 2018-12-02T16:21:41.467

Reputation: 305

The one I'm trying to install is Insiders. HKU/Software/Microsoft/...? I don't see it. Why can't control panel uninstall just... uninstalls? – luisfer – 2018-12-02T16:39:10.593

Answers

12

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:

Biswapriyo

Posted 2018-12-02T16:21:41.467

Reputation: 6 640

I didn't noticed there's a portable edition. I think I'll use it and "sync" all the settings using dropbox, thanks a lot! – luisfer – 2018-12-03T18:31:48.003

1

@luisfer Try this for portable mode: https://code.visualstudio.com/docs/editor/portable

– Biswapriyo – 2018-12-03T19:04:16.147

0

It also happened with me, Seriously it is frustrating. So to uninstall it completely you have to follow these steps(any Windows OS):

  1. Press Windows+r
  2. Type %appdata%\local\Programs
  3. Go to Microsoft VS Code and permanently delete this file
  4. ----------Done-----------
  5. Now install again.

I think it should work for you also. If not then again follow these above steps and do and at the time of installing click the checkbox to Don't create a Start Menu Folder. And then install it.

-----Try these above steps, it will help you.

debasish sahoo

Posted 2018-12-02T16:21:41.467

Reputation: 1

Only have a "Code" folder in AppData/Local. Do not forget to delete the ".vscode" folder in your user directory. – cactuschibre – 2019-05-07T13:53:22.560

0

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.

Miracle

Posted 2018-12-02T16:21:41.467

Reputation: 1