Last active
October 21, 2015 21:05
-
-
Save sqlsimon/b647b6ae3852ffb3f28e to your computer and use it in GitHub Desktop.
BoxStarter script to build and configure TFS2013 along with SQL Express to host the db
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
cinst VisualStudioTeamFoundationServerExpress2013 | |
cinst MsSqlServer2012Express | |
cinst visualstudio2013teamexplorer | |
$tfsConfig="$env:ProgramFiles\Microsoft Team Foundation Server 12.0\Tools\TfsConfig.exe" | |
.$tfsConfig unattend /configure /type:standard | |
.$tfsConfig unattend /configure /type:build ` | |
/inputs:collectionurl=http://localhost:8080/tfs`;ServiceAccountName="LOCAL SERVICE"`;ServiceAccountPassword="pass" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment