-
run
code --list-extensions > vscodeplugins.txton the first machine -
Then copy over vscodeplugins.txt to the new machine and run
codeinstaller.shon the new machine
Forked from securingsincity/Vs code bulk installer.md
Created
April 12, 2026 17:40
-
-
Save jubilancy/4ebb28070efd14e8f82efae72f0d0b58 to your computer and use it in GitHub Desktop.
VS Code bulk install plugins
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #! /bin/sh | |
| input="./vscodeplugins.txt" | |
| while IFS= read -r line | |
| do | |
| echo "Installing - $line" | |
| code --install-extension $line --force | |
| echo "Installed - $line" | |
| done < "$input" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment