Install Multiple VS Code Extentions Offline with PowerShell
By: Cam Wohlfeil
Published: 2019-07-24 1120 EDT
Category: Solutions
Unfortunately sometimes I have to deal with offline development, and moving dependencies is a real pain. Here's something that helped me out, a PowerShell oneliner to install a folder full of extensions:
foreach ($i in gci) {code --install-extension $i}