Home > Net >  How to reset and remove the Java language support which I had added for VS Code?
How to reset and remove the Java language support which I had added for VS Code?

Time:10-16

I had added support for Java in VS Code . I no longer need it so I want to remove the support and take my VS Code to the state it was before.

CodePudding user response:

You can uninstall it from the command line. From the registry (regedit). Open the key:

HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall

Select the Uninstall key and "Find" from the "Edit" menu. Search for "Java." This will show you which subkey the Java is located under. Identify the "UninstallString." keystring. Use this command to uninstall Java.

CodePudding user response:

After backing up settings about other languages, you can delete the follwoing folders to reset VS Code. Then install other needed extensions.

Windows - Delete %APPDATA%\Code and %USERPROFILE%\.vscode.
macOS - Delete $HOME/Library/Application Support/Code and ~/.vscode.
Linux - Delete $HOME/.config/Code and ~/.vscode.

  • Related