Last active
April 16, 2017 09:18
-
-
Save goyalmohit/adc579b086894c9855718e4d6902b6b4 to your computer and use it in GitHub Desktop.
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
| # Configures execution policy to remotesigned | |
| if($(Get-ExecutionPolicy) -ne "RemoteSigned"){ | |
| Set-ExecutionPolicy RemoteSigned -Confirm:$false | |
| } | |
| # Installs chocolatey package manager | |
| iwr https://chocolatey.org/install.ps1 -UseBasicParsing | iex | |
| # Installs JDK8 using chocolatey | |
| choco install jdk8 -y | |
| # Installs jenkins ci using chocolatey | |
| choco install jenkins -y |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment