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.
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.
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.
Your Extensions Folder Depending on your platform it is located: Windows %USERPROFILE%\. vscode\extensions.
Local history has landed in VS Code! It's currently only available in VS Code Insiders.
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. :)
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With