Skip to content

Instantly share code, notes, and snippets.

@sidneiweber
Created December 27, 2019 21:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sidneiweber/355aef53cef5d3830b7ebae241011250 to your computer and use it in GitHub Desktop.
Save sidneiweber/355aef53cef5d3830b7ebae241011250 to your computer and use it in GitHub Desktop.
# cat roles/deploy/files/script.ps1
# Install Chocolatey
iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))
# Globally Auto confirm every action
choco feature enable -n allowGalobalConfirmation
# Install JDK 8 and git
choco install jdk8
choco install git
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment