Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to get install history for Visual Studio Code extensions

Is there a log or something that leaves a record for when a particular Extension was installed for Visual Studio Code?

I'm trying to debug some settings that may have been altered and I'd like to work my way backwards uninstalling extensions I've added.

like image 359
jxramos Avatar asked Mar 21 '18 20:03

jxramos


People also ask

How do I get Visual Studio code history?

Visual Studio Code allows us to check the history of navigated files in Navigation History lists. You can open this window from “Goto–> Navigation History” or by just simply pressing Ctrl + Tab. This will bring list of all previously navigated files with in Visual Studio Code.

How do I see installed extensions in Visual Studio?

To open the Manage Extensions dialog, choose Extensions > Manage Extensions. Or, type Extensions in the search box and choose Manage Extensions. The pane on the left categorizes extensions by those that are installed, those available on Visual Studio Marketplace (Online), and those that have updates available.

Where are Visual Studio code extensions installed?

Your Extensions Folder Depending on your platform it is located: Windows %USERPROFILE%\. vscode\extensions.

Does VS code have local history?

Local history has landed in VS Code! It's currently only available in VS Code Insiders.


1 Answers

The installation of extensions is indeed logged in files called sharedprocess.log. On Windows, the location is C:\Users\<User>\AppData\Roaming\Code\logs\<Timestamp>. Here's an example:

[2018-03-22 02:24:05.264] [sharedprocess] [info] Installing extension: vscode-table-formatter
[2018-03-22 02:24:06.142] [sharedprocess] [info] Downloaded extension: vscode-table-formatter
[2018-03-22 02:24:07.531] [sharedprocess] [info] Extracted extension to C:\Users\<User>\.vscode\extensions\shuworks.vscode-table-formatter-1.2.1: shuworks.vscode-table-formatter-1.2.1
[2018-03-22 02:24:07.565] [sharedprocess] [info] Updated metadata of the extension: shuworks.vscode-table-formatter-1.2.1
[2018-03-22 02:24:07.565] [sharedprocess] [info] Extensions installed successfully: shuworks.vscode-table-formatter

However, why not just open ~/.vscode/extensions in your file explorer and sort by date? That seems much simpler. :)

like image 71
Gama11 Avatar answered Oct 20 '22 00:10

Gama11