Link

Connect-TfsOrganization

Connects to an Azure DevOps organization or a TFS Team Project Collection.


Table of Contents

  1. Syntax
  2. Description
  3. Examples
  4. Parameters
  5. Inputs
  6. Outputs
  7. Related Links

Syntax

Cached credentials

Connect-TfsOrganization
    [-Organization] <object>
    -Cached
    [-Passthru]
    [-Server <object>]

User name and password

Connect-TfsOrganization
    [-Organization] <object>
    -Password <SecureString>
    -UserName <string>
    [-Passthru]
    [-Server <object>]

Credential object

Connect-TfsOrganization
    [-Organization] <object>
    -Credential <object>
    [-Passthru]
    [-Server <object>]

Personal Access Token

Connect-TfsOrganization
    [-Organization] <object>
    -PersonalAccessToken <string>
    [-Passthru]
    [-Server <object>]

Prompt for credential

Connect-TfsOrganization
    [-Organization] <object>
    [-Interactive]
    [-Passthru]
    [-Server <object>]

[Go to top]

Description

The Connect-TfsOrganization cmdlet connects to an Azure DevOps organization or a TFS Team Project Collection. That connection can be later reused by other TfsCmdlets commands until it’s closed by a call to Disconnect-TfsOrganization.

[Go to top]

Examples

Example 1

Connects to a collection called “DefaultCollection” in a TF server called “tfs” using the cached credentials of the logged-on user

PS> Connect-TfsOrganization -Collection http://tfs:8080/tfs/DefaultCollection

Example 2

Connects to a collection called “DefaultCollection” in a Team Foundation server called “tfs”, firstly prompting the user for credentials (it ignores the cached credentials for the currently logged-in user). It’s equivalent to the command: Connect-TfsOrganization -Collection http://tfs:8080/tfs/DefaultCollection -Credential (Get-TfsCredential -Interactive)

PS> Connect-TfsOrganization -Collection http://tfs:8080/tfs/DefaultCollection -Interactive

Parameters

-Cached

Specifies that cached (default) credentials should be used when possible/available.

Type SwitchParameter
Position (Named)
Default Value (N/A)
Accept pipeline input False
Accept wildcard characters False

-Credential

Specifies a user account that has permission to perform this action. To provide a user name and password, a Personal Access Token, and/or to open a input dialog to enter your credentials, call Get-TfsCredential with the appropriate arguments and pass its return to this argument.

Type object
Position (Named)
Default Value (N/A)
Accept pipeline input False
Accept wildcard characters False

-Interactive

Prompts for user credentials. Can be used for any Team Foundation Server or Azure DevOps account - the proper login dialog is automatically selected. Should only be used in an interactive PowerShell session (i.e., a PowerShell terminal window), never in an unattended script (such as those executed during an automated build). Currently it is only supported in Windows PowerShell.

Type SwitchParameter
Position (Named)
Default Value (N/A)
Accept pipeline input False
Accept wildcard characters False

-Organization (Aliases: Collection)

Specifies the URL to the Azure DevOps Organization or Team Project Collection to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organization by simply providing its name instead of the full URL.

Type object
Position 0
Default Value (N/A)
Accept pipeline input True (byvalue)
Accept wildcard characters False

-Passthru

Returns the results of the command. By default, this cmdlet does not generate any output.

Type SwitchParameter
Position (Named)
Default Value (N/A)
Accept pipeline input False
Accept wildcard characters False

-Password

Specifies a password for authentication modes (such as Basic) that support username/password-based credentials. Must be used in conjunction with the -UserName argument

Type SecureString
Position (Named)
Default Value (N/A)
Accept pipeline input False
Accept wildcard characters False

-PersonalAccessToken (Aliases: Pat)

Specifies a personal access token, used as an alternate credential, to authenticate to Azure DevOps

Type string
Position (Named)
Default Value (N/A)
Accept pipeline input False
Accept wildcard characters False

-Server

Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet.

Type object
Position (Named)
Default Value (N/A)
Accept pipeline input True (byvalue)
Accept wildcard characters False

-UserName

Specifies a user name for authentication modes (such as Basic) that support username/password-based credentials. Must be used in conjunction with the -Password argument

Type string
Position (Named)
Default Value (N/A)
Accept pipeline input False
Accept wildcard characters False

Inputs

System.Object

Specifies the URL to the Azure DevOps Organization or Team Project Collection to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organization by simply providing its name instead of the full URL.

System.Object

Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet.

Outputs

Microsoft.VisualStudio.Services.WebApi.VssConnection