Skip to content

Instantly share code, notes, and snippets.

@sushant-at-nitor
Created January 15, 2020 15:16
Show Gist options
  • Save sushant-at-nitor/9a988bdb013ed3925a17a67397ca3f0a to your computer and use it in GitHub Desktop.
Save sushant-at-nitor/9a988bdb013ed3925a17a67397ca3f0a to your computer and use it in GitHub Desktop.
List VSCode and Chocolaty packages to install later
## get list of vscode packages, which you can use to install later
code --list-extensions | % { "code --install-extension $_" }
## get list of choco packages, which you can use to install later
choco list --local-only | % { $_.split(' ')[0] } | % { "choco install -y $_" }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment