Last active
September 27, 2020 14:06
-
-
Save pmatthews05/b00a81f57ff8fe820285b934fc7606b1 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
| $PersonalAccessToken = '<Put your PAT Token>' | |
| $TeamProject = '<Project Name>' | |
| $TeamFoundationCollectionUri = 'https://dev.azure.com/<OrganizationName >' | |
| $AppRegistrationName = '<Service Principal Name>' | |
| $AppPassword = '<Service Principal Secret>' | |
| $AppSecurePassword = ConvertTo-SecureString -String:$AppPassword -AsPlainText -Force | |
| .\Install-ServiceConnectionSubscription.ps1 -PersonalAccessToken $PersonalAccessToken ` | |
| -TeamFoundationCollectionUri:$TeamFoundationCollectionUri ` | |
| -TeamProject:$TeamProject ` | |
| -AppRegistrationName:$AppRegistrationName ` | |
| -AppPassword:$AppSecurePassword |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment