Skip to content

Instantly share code, notes, and snippets.

@uzuki-P
Forked from alimbada/Export-Chocolatey.ps1
Created July 17, 2017 01:49
Show Gist options
  • Save uzuki-P/dbed278272436e9b3fd472e72062e09f to your computer and use it in GitHub Desktop.
Save uzuki-P/dbed278272436e9b3fd472e72062e09f to your computer and use it in GitHub Desktop.
Export installed Chocolatey packages as chocolatey script
choco list -lo -r -y | % { $_.Split('|') | select -First 1 } | % { "choco install " + $_ + " -y" }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment