Created
September 4, 2014 19:47
-
-
Save sweeneyrobb/06a2328efec6990e9ca3 to your computer and use it in GitHub Desktop.
Installs Chocolatey, MSBuild tools, Java runtimes (req for TC), Team City build agent, and SharePoint pre-requisites.
This file contains 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
iex ((new-object net.webclient).DownloadString('https://chocolatey.org/install.ps1')) | |
choco install microsoft-build-tools | |
choco install javaruntime | |
choco install TeamCityAgent -params 'serverurl=http://{teamcityurl}:8080 agentName=Agent1 agentDir=C:\\TeamCity\\buildAgent' | |
# installs sharepoint build dependancies. Review https://officesharepointci.codeplex.com/ for more information. | |
# should convert this to a chocolatey package too :) | |
.\OfficeSharePointCI\TfsBuildServerPrerequisites.ps1 -Install |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment