Unpacking Software Livestream

Join our monthly Unpacking Software livestream to hear about the latest news, chat and opinion on packaging, software deployment and lifecycle management!

Learn More

Chocolatey Product Spotlight

Join the Chocolatey Team on our regular monthly stream where we put a spotlight on the most recent Chocolatey product releases. You'll have a chance to have your questions answered in a live Ask Me Anything format.

Learn More

Chocolatey Coding Livestream

Join us for the Chocolatey Coding Livestream, where members of our team dive into the heart of open source development by coding live on various Chocolatey projects. Tune in to witness real-time coding, ask questions, and gain insights into the world of package management. Don't miss this opportunity to engage with our team and contribute to the future of Chocolatey!

Learn More

Calling All Chocolatiers! Whipping Up Windows Automation with Chocolatey Central Management

Webinar from
Wednesday, 17 January 2024

We are delighted to announce the release of Chocolatey Central Management v0.12.0, featuring seamless Deployment Plan creation, time-saving duplications, insightful Group Details, an upgraded Dashboard, bug fixes, user interface polishing, and refined documentation. As an added bonus we'll have members of our Solutions Engineering team on-hand to dive into some interesting ways you can leverage the new features available!

Watch On-Demand
Chocolatey Community Coffee Break

Join the Chocolatey Team as we discuss all things Community, what we do, how you can get involved and answer your Chocolatey questions.

Watch The Replays
Chocolatey and Intune Overview

Webinar Replay from
Wednesday, 30 March 2022

At Chocolatey Software we strive for simple, and teaching others. Let us teach you just how simple it could be to keep your 3rd party applications updated across your devices, all with Intune!

Watch On-Demand
Chocolatey For Business. In Azure. In One Click.

Livestream from
Thursday, 9 June 2022

Join James and Josh to show you how you can get the Chocolatey For Business recommended infrastructure and workflow, created, in Azure, in around 20 minutes.

Watch On-Demand
The Future of Chocolatey CLI

Livestream from
Thursday, 04 August 2022

Join Paul and Gary to hear more about the plans for the Chocolatey CLI in the not so distant future. We'll talk about some cool new features, long term asks from Customers and Community and how you can get involved!

Watch On-Demand
Hacktoberfest Tuesdays 2022

Livestreams from
October 2022

For Hacktoberfest, Chocolatey ran a livestream every Tuesday! Re-watch Cory, James, Gary, and Rain as they share knowledge on how to contribute to open-source projects such as Chocolatey CLI.

Watch On-Demand

Downloads:

1,943,917

Downloads of v 4.253.0:

2,545

Last Update:

14 Mar 2025

Package Maintainer(s):

Software Author(s):

  • Microsoft Corporation

Tags:

vsts tfs azure pipelines build agents

Azure Pipelines Agent (VSTS Build Agent)

  • 1
  • 2
  • 3

4.253.0 | Updated: 14 Mar 2025

Downloads:

1,943,917

Downloads of v 4.253.0:

2,545

Maintainer(s):

Software Author(s):

  • Microsoft Corporation

Azure Pipelines Agent (VSTS Build Agent) 4.253.0

Legal Disclaimer: Neither this package nor Chocolatey Software, Inc. are affiliated with or endorsed by Microsoft Corporation. The inclusion of Microsoft Corporation trademark(s), if any, upon this webpage is solely to identify Microsoft Corporation goods or services and not for commercial purposes.

  • 1
  • 2
  • 3

All Checks are Passing

3 Passing Tests


Validation Testing Passed


Verification Testing Passed

Details

Scan Testing Successful:

No detections found in any package files

Details
Learn More

Deployment Method: Individual Install, Upgrade, & Uninstall

To install Azure Pipelines Agent (VSTS Build Agent), run the following command from the command line or from PowerShell:

>

To upgrade Azure Pipelines Agent (VSTS Build Agent), run the following command from the command line or from PowerShell:

>

To uninstall Azure Pipelines Agent (VSTS Build Agent), run the following command from the command line or from PowerShell:

>

Deployment Method:

NOTE

This applies to both open source and commercial editions of Chocolatey.

1. Enter Your Internal Repository Url

(this should look similar to https://community.chocolatey.org/api/v2/)


2. Setup Your Environment

1. Ensure you are set for organizational deployment

Please see the organizational deployment guide

2. Get the package into your environment

  • Open Source or Commercial:
    • Proxy Repository - Create a proxy nuget repository on Nexus, Artifactory Pro, or a proxy Chocolatey repository on ProGet. Point your upstream to https://community.chocolatey.org/api/v2/. Packages cache on first access automatically. Make sure your choco clients are using your proxy repository as a source and NOT the default community repository. See source command for more information.
    • You can also just download the package and push it to a repository Download

3. Copy Your Script

choco upgrade azure-pipelines-agent -y --source="'INTERNAL REPO URL'" [other options]

See options you can pass to upgrade.

See best practices for scripting.

Add this to a PowerShell script or use a Batch script with tools and in places where you are calling directly to Chocolatey. If you are integrating, keep in mind enhanced exit codes.

If you do use a PowerShell script, use the following to ensure bad exit codes are shown as failures:


choco upgrade azure-pipelines-agent -y --source="'INTERNAL REPO URL'" 
$exitCode = $LASTEXITCODE

Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
  Exit 0
}

Exit $exitCode

- name: Install azure-pipelines-agent
  win_chocolatey:
    name: azure-pipelines-agent
    version: '4.253.0'
    source: INTERNAL REPO URL
    state: present

See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.


chocolatey_package 'azure-pipelines-agent' do
  action    :install
  source   'INTERNAL REPO URL'
  version  '4.253.0'
end

See docs at https://docs.chef.io/resource_chocolatey_package.html.


cChocoPackageInstaller azure-pipelines-agent
{
    Name     = "azure-pipelines-agent"
    Version  = "4.253.0"
    Source   = "INTERNAL REPO URL"
}

Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.


package { 'azure-pipelines-agent':
  ensure   => '4.253.0',
  provider => 'chocolatey',
  source   => 'INTERNAL REPO URL',
}

Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.


4. If applicable - Chocolatey configuration/installation

See infrastructure management matrix for Chocolatey configuration elements and examples.

Package Approved

This package was approved as a trusted package on 14 Mar 2025.

Description

The cross platform build and release agent for Azure Pipelines and Team Foundation Server 2015 and beyond.
An agent that you set up and manage on your own to run build and deployment jobs is a self-hosted agent. You can use self-hosted agents in Azure Pipelines or Team Foundation Server (TFS). Self-hosted agents give you more control to install dependent software needed for your builds and deployments.

Package Specific

Package Parameters

The full list of package parameters are documented here (Including them here exceeds the Chocolatey nupkg description limit!)

To pass parameters, use --params "''" (e.g. choco install packageID [other options] --params="'/ITEM:value /ITEM2:value2 /FLAG_BOOLEAN'").
To have choco remember parameters on upgrade, be sure to set choco feature enable -n=useRememberedArgumentsForUpgrades.

Example:
choco install azure-pipelines-agent --params "'/Directory:c:\agent2 /Token:mytoken /Pool:Integration /Url:https://dev.azure.com/orgname'"


tools\chocolateybeforemodify.ps1
Get-Service | Where-Object { $_.Name -like "vstsagent*" } | Stop-Service
tools\chocolateyinstall.ps1
$ErrorActionPreference = 'Stop'; # stop on all errors

$url = 'https://vstsagentpackage.azureedge.net/agent/4.253.0/vsts-agent-win-x86-4.253.0.zip'
$url64 = 'https://vstsagentpackage.azureedge.net/agent/4.253.0/vsts-agent-win-x64-4.253.0.zip'
$checksum = '3bfb34c73784041844c1fec05b310327d6b2a9a2b4542467a634ac324033afc3'
$checksum64 = 'aecbff3d911e2634dccda26434eb39752d74ff0595c78814fb219b29baef17f6'

$pp = Get-PackageParameters

if (!$pp['Directory']) { $pp['Directory'] = 'c:\agent' }

$configOpts = @()

# We only run config.cmd if a Url is supplied
if ($pp['Url']) {

    $configOpts = @('configure', '--unattended', '--acceptTeeEula')
    $configOpts += @('--url', $pp['Url'])
    if ($pp['CollectionName']) {
        $configOpts += @('--CollectionName', $pp['CollectionName'])
    }
    if ($pp['Token']) {
        $configOpts += @("--auth", "pat", "--token", $pp['Token'])
    }
    else {
        if (!$pp['Auth']) {
            Write-Error "You need to specify an auth type with /Auth= 'negotiate', 'alt' or 'integrated'"
        }
        
        $configOpts += @("--auth", $($pp['Auth']))

        if ($pp['Auth'] -ine 'integrated') {
            $username = $pp['Username']
            $password = $pp['Password']

            if (!$username -or !$password) {
                Write-Error "You must supply /username and /password"
            }
            
            $configOpts += @("--userName", $username, "--password", $password)
        }
    }
    # Are we a deployment agent, environment, or a build agent?
    if ($pp['DeploymentGroup']) {
        Write-Verbose "Deployment Agent"

        if (!$pp['DeploymentGroupName'] -or !$pp['ProjectName']) {
            Write-Error "Must specify /DeploymentGroupName and /ProjectName"
        }

        $configOpts += @("--deploymentGroup", "--deploymentGroupName", $pp['DeploymentGroupName'])
        if ($pp['DeploymentGroupTags']) {
            $configOpts += @("--addDeploymentGroupTags", "--deploymentGroupTags", $pp['DeploymentGroupTags'])
        }

        if ($pp['ProjectName']) {
            $configOpts += @('--projectName', $pp['ProjectName'])
        }
    }
    elseif ($pp['Environment']) {
        Write-Verbose "Environment Agent"

        if (!$pp['EnvironmentName'] -or !$pp['ProjectName']) {
            Write-Error "Must specify /EnvironmentName and /ProjectName"
        }

        $configOpts += @("--environment", "--environmentName", $pp['EnvironmentName'])

        if ($pp['EnvironmentTags']) {
            $configOpts += @("--addVirtualMachineResourceTags", "--virtualMachineResourceTags", $pp['EnvironmentTags'])
        }

        if ($pp['ProjectName']) {
            $configOpts += @('--projectName', $pp['ProjectName'])
        }
    }
    else {
        if (!$pp['Pool']) { $pp['Pool'] = 'default'}
      
        $configOpts += @("--pool", $pp['Pool'])
    }
    
    # AutoLogon(interactive) or as a service
    if ($pp['AutoLogon']) {
        $configOpts += @('--runAsAutoLogon', '--noRestart')
    }
    else {
        $configOpts += @('--runAsService')
    }

    if ($pp['LogonAccount']) {
        $configOpts += @("--windowsLogonAccount", $pp['LogonAccount'])

        if ($pp['LogonPassword']) {
            $configOpts += @("--windowsLogonPassword", $pp['LogonPassword'])
        }
    }

    # Work directory
    if ($pp['Work']) {
        $configOpts += @("--work", $pp['Work'])
    }

    # Agent name
    if ($pp['AgentName']) {
        $configOpts += @("--agent", $pp['AgentName'])
    }

    # Replace existing agent
    if ($pp['Replace']) {
        $configOpts += @("--replace")
    }

    # Self-signed certificate
    if ($pp['SslSkipCertValidation']) {
        $configOpts += @("--sslskipcertvalidation")
    }

    # Git use SChannel
    if ($pp['GitUseSChannel']) {
        $configOpts += @("--gituseschannel")
    }

    # Client Certificate
    if ($pp['UseClientCertificate']) {
        if (!$pp['SslCaCert'] -or !$pp['SslClientCert'] -or !$pp['SslClientCertKey'] -or !$pp['SslClientCertArchive'] -or !$pp['SslClientCertPassword']) {
            Write-Error "Must specify /SslCaCert, /SslClientCert, /SslClientCertKey, /SslClientCertArchive and /SslClientCertPassword"
        }
        $configOpts += @(
            "--sslcacert", $pp['SslCaCert'],
            "--sslclientcert", $pp['SslClientCert'],
            "--sslclientcertkey", $pp['SslClientCertKey'],
            "--sslclientcertarchive", $pp['SslClientCertArchive'],
            "--sslclientcertpassword", $pp['SslClientCertPassword']
        )
    }

    # Proxy
    if ($pp['ProxyUrl']) {
        $configOpts += @("--proxyurl", $pp['ProxyUrl'])

        if ($pp['ProxyUserName']) {
            $configOpts += @("--proxyusername", $pp['ProxyUserName'])

            if ($pp['ProxyPassword']) {
                $configOpts += @("--proxypassword", $pp['ProxyPassword'])
            }
        }        
    }
}

$packageArgs = @{
    packageName    = $env:ChocolateyPackageName
    unzipLocation  = $pp['Directory']
    url            = $url
    url64bit       = $url64

    checksum       = $checksum
    checksumType   = 'sha256'
    checksum64     = $checksum64
    checksumType64 = 'sha256'
}

Install-ChocolateyZipPackage @packageArgs

if ($configOpts.Count) {
    Write-Verbose "$($packageArgs.unzipLocation)\bin\Agent.Listener.exe configure $configOpts"
    & "$($packageArgs.unzipLocation)\bin\Agent.Listener.exe" $configOpts
}

Log in or click on link to see number of positives.

In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).

Chocolatey Pro provides runtime protection from possible malware.

Add to Builder Version Downloads Last Updated Status
Azure Pipelines Agent (VSTS Build Agent) 4.252.0 3922 Thursday, February 27, 2025 Approved
Azure Pipelines Agent (VSTS Build Agent) 4.251.0 4958 Friday, February 7, 2025 Approved
Azure Pipelines Agent (VSTS Build Agent) 4.248.1 2255 Tuesday, January 28, 2025 Approved
Azure Pipelines Agent (VSTS Build Agent) 3.252.0 17 Thursday, February 27, 2025 Approved
Azure Pipelines Agent (VSTS Build Agent) 3.251.0 27 Friday, February 7, 2025 Approved
Azure Pipelines Agent (VSTS Build Agent) 3.248.1 20 Tuesday, January 28, 2025 Approved
Azure Pipelines Agent (VSTS Build Agent) 3.248.0 18708 Saturday, November 16, 2024 Approved
Azure Pipelines Agent (VSTS Build Agent) 3.246.0 10012 Thursday, October 24, 2024 Approved
Azure Pipelines Agent (VSTS Build Agent) 3.244.1 13942 Thursday, September 19, 2024 Approved
Azure Pipelines Agent (VSTS Build Agent) 3.243.1 4769 Friday, August 23, 2024 Approved
Azure Pipelines Agent (VSTS Build Agent) 3.243.0 1222 Tuesday, August 13, 2024 Approved
Azure Pipelines Agent (VSTS Build Agent) 3.242.1 4014 Tuesday, July 30, 2024 Approved
Azure Pipelines Agent (VSTS Build Agent) 3.242.0 3682 Wednesday, July 17, 2024 Approved
Azure Pipelines Agent (VSTS Build Agent) 3.241.0 118680 Saturday, June 15, 2024 Approved
Azure Pipelines Agent (VSTS Build Agent) 3.240.1 3430 Sunday, June 2, 2024 Approved
Azure Pipelines Agent (VSTS Build Agent) 3.240.0 3041 Thursday, May 23, 2024 Approved
Azure Pipelines Agent (VSTS Build Agent) 3.239.1 2350 Tuesday, May 14, 2024 Approved
Azure Pipelines Agent (VSTS Build Agent) 3.238.0 9170 Thursday, April 18, 2024 Approved
Azure Pipelines Agent (VSTS Build Agent) 3.236.1 9745 Tuesday, March 12, 2024 Approved
Azure Pipelines Agent (VSTS Build Agent) 3.234.0 5155 Tuesday, February 20, 2024 Approved
Azure Pipelines Agent (VSTS Build Agent) 3.232.3 8202 Thursday, January 25, 2024 Approved
Azure Pipelines Agent (VSTS Build Agent) 3.232.1 8238 Wednesday, January 3, 2024 Approved
Azure Pipelines Agent (VSTS Build Agent) 3.230.0 17472 Thursday, November 16, 2023 Approved
Azure Pipelines Agent (VSTS Build Agent) 3.227.2 10502 Tuesday, October 17, 2023 Approved
Azure Pipelines Agent (VSTS Build Agent) 3.227.1 2625 Thursday, October 5, 2023 Approved
Azure Pipelines Agent (VSTS Build Agent) 3.225.0 30161 Tuesday, August 1, 2023 Approved
Azure Pipelines Agent (VSTS Build Agent) 3.220.5 40416 Thursday, June 8, 2023 Approved
Azure Pipelines Agent (VSTS Build Agent) 3.220.2 17390 Sunday, May 21, 2023 Approved
Azure Pipelines Agent (VSTS Build Agent) 3.220.0 17627 Wednesday, May 3, 2023 Approved
Azure Pipelines Agent (VSTS Build Agent) 3.218.0 35440 Friday, March 31, 2023 Approved
Azure Pipelines Agent (VSTS Build Agent) 2.220.0 101 Wednesday, June 28, 2023 Approved
Azure Pipelines Agent (VSTS Build Agent) 2.218.1 8812 Wednesday, March 22, 2023 Approved
Azure Pipelines Agent (VSTS Build Agent) 2.217.2 32660 Friday, February 10, 2023 Approved
Azure Pipelines Agent (VSTS Build Agent) 2.214.1 26322 Friday, January 13, 2023 Approved
Azure Pipelines Agent (VSTS Build Agent) 2.213.2 42561 Saturday, November 12, 2022 Approved
Azure Pipelines Agent (VSTS Build Agent) 2.213.1 867 Friday, November 11, 2022 Approved
Azure Pipelines Agent (VSTS Build Agent) 2.211.1 16585 Thursday, October 20, 2022 Approved
Azure Pipelines Agent (VSTS Build Agent) 2.210.1 29047 Wednesday, September 14, 2022 Approved
Azure Pipelines Agent (VSTS Build Agent) 2.210.0 147 Wednesday, September 7, 2022 Approved
Azure Pipelines Agent (VSTS Build Agent) 2.209.0 10079 Wednesday, August 31, 2022 Approved
Azure Pipelines Agent (VSTS Build Agent) 2.206.1 37851 Saturday, July 23, 2022 Approved
Azure Pipelines Agent (VSTS Build Agent) 2.204.0 40807 Thursday, May 26, 2022 Approved
Azure Pipelines Agent (VSTS Build Agent) 2.202.1 27836 Tuesday, April 19, 2022 Approved
Azure Pipelines Agent (VSTS Build Agent) 2.202.0 8248 Thursday, April 7, 2022 Approved
Azure Pipelines Agent (VSTS Build Agent) 2.200.2 26472 Saturday, February 26, 2022 Approved
Azure Pipelines Agent (VSTS Build Agent) 2.198.3 10899 Tuesday, February 8, 2022 Approved
Azure Pipelines Agent (VSTS Build Agent) 2.198.2 3685 Thursday, February 3, 2022 Approved
Azure Pipelines Agent (VSTS Build Agent) 2.196.2 19211 Thursday, January 13, 2022 Approved
Azure Pipelines Agent (VSTS Build Agent) 2.195.2 26371 Thursday, December 9, 2021 Approved
Azure Pipelines Agent (VSTS Build Agent) 2.195.1 8143 Thursday, December 2, 2021 Approved
Azure Pipelines Agent (VSTS Build Agent) 2.195.0 16091 Saturday, November 20, 2021 Approved
Azure Pipelines Agent (VSTS Build Agent) 2.194.0 25392 Tuesday, November 2, 2021 Approved
Azure Pipelines Agent (VSTS Build Agent) 2.193.1 38487 Saturday, October 16, 2021 Approved
Azure Pipelines Agent (VSTS Build Agent) 2.193.0 21923 Thursday, October 7, 2021 Approved
Azure Pipelines Agent (VSTS Build Agent) 2.192.0 32847 Friday, September 17, 2021 Approved
Azure Pipelines Agent (VSTS Build Agent) 2.191.1 28619 Wednesday, September 1, 2021 Approved
Azure Pipelines Agent (VSTS Build Agent) 2.190.0 49582 Wednesday, August 11, 2021 Approved
Azure Pipelines Agent (VSTS Build Agent) 2.189.0 42946 Saturday, July 24, 2021 Approved
Azure Pipelines Agent (VSTS Build Agent) 2.188.4 25145 Tuesday, July 13, 2021 Approved
Azure Pipelines Agent (VSTS Build Agent) 2.188.3 30199 Tuesday, June 29, 2021 Approved
Azure Pipelines Agent (VSTS Build Agent) 2.187.2 52901 Friday, June 4, 2021 Approved
Azure Pipelines Agent (VSTS Build Agent) 2.186.1 40531 Thursday, May 13, 2021 Approved
Azure Pipelines Agent (VSTS Build Agent) 2.185.1 31985 Thursday, April 22, 2021 Approved
Azure Pipelines Agent (VSTS Build Agent) 2.184.2 29025 Thursday, April 1, 2021 Approved
Azure Pipelines Agent (VSTS Build Agent) 2.183.1 39484 Monday, March 8, 2021 Approved
Azure Pipelines Agent (VSTS Build Agent) 2.182.1 25321 Friday, February 19, 2021 Approved
Azure Pipelines Agent (VSTS Build Agent) 2.181.2 11798 Friday, February 12, 2021 Approved
Azure Pipelines Agent (VSTS Build Agent) 2.181.1 11503 Friday, February 5, 2021 Approved
Azure Pipelines Agent (VSTS Build Agent) 2.181.0 14887 Monday, January 25, 2021 Approved
Azure Pipelines Agent (VSTS Build Agent) 2.179.0 123288 Sunday, December 13, 2020 Approved
Azure Pipelines Agent (VSTS Build Agent) 2.177.1 32257 Thursday, November 19, 2020 Approved
Azure Pipelines Agent (VSTS Build Agent) 2.175.2 66874 Wednesday, October 7, 2020 Approved
Azure Pipelines Agent (VSTS Build Agent) 2.174.3 22485 Thursday, September 24, 2020 Approved
Azure Pipelines Agent (VSTS Build Agent) 2.174.2 8508 Saturday, September 19, 2020 Approved
Azure Pipelines Agent (VSTS Build Agent) 2.174.1 27753 Tuesday, September 1, 2020 Approved
Azure Pipelines Agent (VSTS Build Agent) 2.173.0 38290 Tuesday, August 11, 2020 Approved
Azure Pipelines Agent (VSTS Build Agent) 2.172.2 29626 Friday, July 31, 2020 Approved
Azure Pipelines Agent (VSTS Build Agent) 2.171.1 76873 Thursday, July 2, 2020 Approved
Azure Pipelines Agent (VSTS Build Agent) 2.170.1 44233 Tuesday, June 16, 2020 Approved
Azure Pipelines Agent (VSTS Build Agent) 2.169.1.20200611 6216 Wednesday, June 10, 2020 Approved
Azure Pipelines Agent (VSTS Build Agent) 2.169.1 8385 Thursday, June 4, 2020 Approved
Azure Pipelines Agent (VSTS Build Agent) 2.168.2 29156 Friday, May 15, 2020 Approved
Azure Pipelines Agent (VSTS Build Agent) 2.166.4 12838 Tuesday, April 28, 2020 Approved
Azure Pipelines Agent (VSTS Build Agent) 2.166.3 717 Thursday, April 23, 2020 Approved
Azure Pipelines Agent (VSTS Build Agent) 2.165.2 7499 Tuesday, March 24, 2020 Approved
Azure Pipelines Agent (VSTS Build Agent) 2.165.0 6344 Wednesday, February 26, 2020 Approved
Azure Pipelines Agent (VSTS Build Agent) 2.164.8 3294 Friday, February 14, 2020 Approved
Azure Pipelines Agent (VSTS Build Agent) 2.164.7 1935 Thursday, February 6, 2020 Approved
Azure Pipelines Agent (VSTS Build Agent) 2.164.6 2142 Tuesday, January 28, 2020 Approved
Azure Pipelines Agent (VSTS Build Agent) 2.163.1 4786 Tuesday, December 24, 2019 Approved
Azure Pipelines Agent (VSTS Build Agent) 2.162.0 5450 Wednesday, December 11, 2019 Approved
Azure Pipelines Agent (VSTS Build Agent) 2.160.1 4879 Tuesday, November 19, 2019 Approved
Azure Pipelines Agent (VSTS Build Agent) 2.160.1-preview 213 Monday, November 18, 2019 Approved
Azure Pipelines Agent (VSTS Build Agent) 2.160.0 2440 Saturday, November 9, 2019 Approved
Azure Pipelines Agent (VSTS Build Agent) 2.159.2 2963 Wednesday, October 30, 2019 Approved
Azure Pipelines Agent (VSTS Build Agent) 2.158.0 1860 Wednesday, October 9, 2019 Approved
Azure Pipelines Agent (VSTS Build Agent) 2.155.1 2550 Wednesday, August 14, 2019 Approved
Azure Pipelines Agent (VSTS Build Agent) 2.154.3 1085 Friday, July 26, 2019 Approved
Azure Pipelines Agent (VSTS Build Agent) 2.153.2 2653 Thursday, June 20, 2019 Approved
Azure Pipelines Agent (VSTS Build Agent) 2.152.1 546 Thursday, June 13, 2019 Approved
Azure Pipelines Agent (VSTS Build Agent) 2.150.3 2434 Thursday, May 2, 2019 Approved
Azure Pipelines Agent (VSTS Build Agent) 2.150.0 1131 Thursday, April 25, 2019 Approved
Azure Pipelines Agent (VSTS Build Agent) 2.149.2 1371 Friday, April 5, 2019 Approved
Azure Pipelines Agent (VSTS Build Agent) 2.148.2 510 Saturday, March 23, 2019 Approved
Azure Pipelines Agent (VSTS Build Agent) 2.147.1 1880 Saturday, February 23, 2019 Approved
Azure Pipelines Agent (VSTS Build Agent) 2.146.0 1024 Friday, February 8, 2019 Approved
Azure Pipelines Agent (VSTS Build Agent) 2.144.2 505 Wednesday, January 30, 2019 Approved
Azure Pipelines Agent (VSTS Build Agent) 2.144.0 655 Tuesday, December 18, 2018 Approved
Azure Pipelines Agent (VSTS Build Agent) 2.142.1 405 Saturday, December 1, 2018 Approved
Azure Pipelines Agent (VSTS Build Agent) 2.141.1 332 Tuesday, November 6, 2018 Approved
Azure Pipelines Agent (VSTS Build Agent) 2.140.2 405 Tuesday, October 9, 2018 Approved

Discussion for the Azure Pipelines Agent (VSTS Build Agent) Package

Ground Rules:

  • This discussion is only about Azure Pipelines Agent (VSTS Build Agent) and the Azure Pipelines Agent (VSTS Build Agent) package. If you have feedback for Chocolatey, please contact the Google Group.
  • This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
  • The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
  • Tell us what you love about the package or Azure Pipelines Agent (VSTS Build Agent), or tell us what needs improvement.
  • Share your experiences with the package, or extra configuration or gotchas that you've found.
  • If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.
comments powered by Disqus