Welcome to the Chocolatey Community Package Repository! The packages found in this section of the site are provided, maintained, and moderated by the community.
Moderation
Every version of each package undergoes a rigorous moderation process before it goes live that typically includes:
- Security, consistency, and quality checking
- Installation testing
- Virus checking through VirusTotal
- Human moderators who give final review and sign off
More detail at Security and Moderation.
Organizational Use
If you are an organization using Chocolatey, we want your experience to be fully reliable. Due to the nature of this publicly offered repository, reliability cannot be guaranteed. Packages offered here are subject to distribution rights, which means they may need to reach out further to the internet to the official locations to download files at runtime.
Fortunately, distribution rights do not apply for internal use. With any edition of Chocolatey (including the free open source edition), you can host your own packages and cache or internalize existing community packages.
Disclaimer
Your use of the packages on this site means you understand they are not supported or guaranteed in any way. Learn more...
- Passing
- Failing
- Pending
- Unknown / Exempted

Downloads:
565,686
Downloads of v 6.0.582:
412
Last Update:
13 Apr 2021
Package Maintainer(s):
Software Author(s):
- Octopus Deploy
Tags:
octopus deploy- Software Specific:
- Software Site
- Software License
- Package Specific:
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download

Octopus Deploy - Tentacle
- Software Specific:
- Software Site
- Software License
- Package Specific:
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Downloads:
565,686
Downloads of v 6.0.582:
412
Maintainer(s):
Software Author(s):
- Octopus Deploy
Edit Package
To edit the metadata for a package, please upload an updated version of the package.
Chocolatey's Community Package Repository currently does not allow updating package metadata on the website. This helps ensure that the package itself (and the source used to build the package) remains the one true source of package metadata.
This does require that you increment the package version.
All Checks are Passing
2 Passing Test
To install Octopus Deploy - Tentacle, run the following command from the command line or from PowerShell:
To upgrade Octopus Deploy - Tentacle, run the following command from the command line or from PowerShell:
To uninstall Octopus Deploy - Tentacle, run the following command from the command line or from PowerShell:
NOTE: This applies to both open source and commercial editions of Chocolatey.
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
-
Open Source
- Download the Package Download
- Follow manual internalization instructions
-
Package Internalizer (C4B)
- Run
choco download octopusdeploy.tentacle --internalize --source=https://community.chocolatey.org/api/v2
(additional options) - Run
choco push --source="'http://internal/odata/repo'"
for package and dependencies - Automate package internalization
- Run
3. Enter your internal repository url
(this should look similar to https://community.chocolatey.org/api/v2)
4. Choose your deployment method:
choco upgrade octopusdeploy.tentacle -y --source="'STEP 3 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 octopusdeploy.tentacle -y --source="'STEP 3 URL'"
$exitCode = $LASTEXITCODE
Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
Exit 0
}
Exit $exitCode
- name: Ensure octopusdeploy.tentacle installed
win_chocolatey:
name: octopusdeploy.tentacle
state: present
version: 6.0.582
source: STEP 3 URL
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
chocolatey_package 'octopusdeploy.tentacle' do
action :install
version '6.0.582'
source 'STEP 3 URL'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
Chocolatey::Ensure-Package
(
Name: octopusdeploy.tentacle,
Version: 6.0.582,
Source: STEP 3 URL
);
Requires Otter Chocolatey Extension. See docs at https://inedo.com/den/otter/chocolatey.
cChocoPackageInstaller octopusdeploy.tentacle
{
Name = 'octopusdeploy.tentacle'
Ensure = 'Present'
Version = '6.0.582'
Source = 'STEP 3 URL'
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'octopusdeploy.tentacle':
provider => 'chocolatey',
ensure => '6.0.582',
source => 'STEP 3 URL',
}
Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.
salt '*' chocolatey.install octopusdeploy.tentacle version="6.0.582" source="STEP 3 URL"
See docs at https://docs.saltstack.com/en/latest/ref/modules/all/salt.modules.chocolatey.html.
5. If applicable - Chocolatey configuration/installation
See infrastructure management matrix for Chocolatey configuration elements and examples.
Private CDN cached downloads available for licensed customers. Never experience 404 breakages again! Learn more...
There are versions of this package awaiting moderation . See the Version History section below.
This package was approved as a trusted package on 13 Apr 2021.
Octopus Deploy is a user-friendly automated deployment tool for .NET developers.
This package installs the Tentacle deployment agent service.
Install-ChocolateyPackage `
-PackageName 'OctopusDeploy.Tentacle' `
-FileType 'msi' `
-SilentArgs '/quiet' `
-Url 'https://download.octopusdeploy.com/octopus/Octopus.Tentacle.6.0.582.msi' `
-Url64bit 'https://download.octopusdeploy.com/octopus/Octopus.Tentacle.6.0.582-x64.msi' `
-Checksum '9EF16250742B581F7CF762BA17F540BBBE3ECEF9B940E614A7859DC5DF782245' `
-ChecksumType 'SHA256' `
-Checksum64 '8C48E6B33ADD9F83B5910606D83712FA6F43EAF86F0DF3FE7A7E0B48926E8FB5' `
-ChecksumType64 'SHA256'
Log in or click on link to see number of positives.
- OctopusDeploy.Tentacle.6.0.582.nupkg (82d13ce7d5ff) - ## / 62
- Octopus.Tentacle.6.0.582-x64.msi (8c48e6b33add) - ## / 51
- Octopus.Tentacle.6.0.582.msi (9ef16250742b) - ## / 57
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.
Version | Downloads | Last Updated | Status |
---|---|---|---|
Octopus Deploy - Tentacle 6.0.582 | 412 | Tuesday, April 13, 2021 | Approved |
Octopus Deploy - Tentacle 6.0.581 | 162 | Tuesday, April 13, 2021 | Approved |
Octopus Deploy - Tentacle 6.0.577 | 131 | Monday, April 12, 2021 | Approved |
Octopus Deploy - Tentacle 6.0.576 | 146 | Monday, April 12, 2021 | Approved |
Octopus Deploy - Tentacle 6.0.568 | 150 | Sunday, April 11, 2021 | Approved |
Octopus Deploy - Tentacle 6.0.567 | 206 | Saturday, April 10, 2021 | Approved |
Octopus Deploy - Tentacle 6.0.566 | 176 | Friday, April 9, 2021 | Approved |
Octopus Deploy - Tentacle 6.0.559 | 411 | Wednesday, April 7, 2021 | Approved |
Octopus Deploy - Tentacle 6.0.555 | 433 | Monday, April 5, 2021 | Approved |
Octopus Deploy - Tentacle 6.0.549 | 624 | Wednesday, March 31, 2021 | Approved |
Octopus Deploy - Tentacle 6.0.545 | 23 | Tuesday, March 30, 2021 |
Waiting for Maintainer
|
Octopus Deploy - Tentacle 6.0.543 | 115 | Monday, March 29, 2021 | Approved |
Octopus Deploy - Tentacle 6.0.539 | 137 | Friday, March 26, 2021 | Approved |
Octopus Deploy - Tentacle 6.0.536 | 1239 | Thursday, March 25, 2021 | Approved |
Octopus Deploy - Tentacle 6.0.534 | 4261 | Tuesday, March 23, 2021 | Approved |
Octopus Deploy - Tentacle 6.0.521 | 469 | Wednesday, March 17, 2021 | Approved |
Octopus Deploy - Tentacle 6.0.519 | 31 | Wednesday, March 17, 2021 | Approved |
Octopus Deploy - Tentacle 6.0.518 | 235 | Tuesday, March 16, 2021 | Approved |
Octopus Deploy - Tentacle 6.0.517 | 199 | Tuesday, March 16, 2021 | Approved |
Octopus Deploy - Tentacle 6.0.515 | 78 | Tuesday, March 16, 2021 | Approved |
Octopus Deploy - Tentacle 6.0.492 | 817 | Friday, March 5, 2021 | Approved |
Octopus Deploy - Tentacle 6.0.490 | 288 | Wednesday, March 3, 2021 | Approved |
Octopus Deploy - Tentacle 6.0.489 | 237 | Wednesday, March 3, 2021 | Approved |
Octopus Deploy - Tentacle 6.0.486 | 108 | Tuesday, March 2, 2021 | Approved |
Octopus Deploy - Tentacle 6.0.481 | 325 | Sunday, February 28, 2021 | Approved |
Octopus Deploy - Tentacle 6.0.480 | 214 | Saturday, February 27, 2021 | Approved |
Octopus Deploy - Tentacle 6.0.479 | 184 | Friday, February 26, 2021 | Approved |
Octopus Deploy - Tentacle 6.0.478 | 60 | Friday, February 26, 2021 | Approved |
Octopus Deploy - Tentacle 6.0.477 | 240 | Friday, February 26, 2021 | Approved |
Octopus Deploy - Tentacle 6.0.464 | 519 | Sunday, February 21, 2021 | Approved |
Octopus Deploy - Tentacle 6.0.463 | 294 | Saturday, February 20, 2021 | Approved |
Octopus Deploy - Tentacle 6.0.461 | 265 | Thursday, February 18, 2021 | Approved |
Octopus Deploy - Tentacle 6.0.0 | 8519 | Wednesday, September 16, 2020 | Approved |
Octopus Deploy - Tentacle 5.0.15 | 4121 | Tuesday, July 21, 2020 | Approved |
Octopus Deploy - Tentacle 5.0.14 | 1080 | Friday, July 3, 2020 | Approved |
Octopus Deploy - Tentacle 5.0.13 | 149654 | Monday, April 27, 2020 | Approved |
Octopus Deploy - Tentacle 5.0.12 | 16781 | Monday, February 10, 2020 | Approved |
Octopus Deploy - Tentacle 5.0.10 | 607 | Tuesday, January 28, 2020 | Approved |
Octopus Deploy - Tentacle 5.0.9 | 2477 | Tuesday, December 10, 2019 | Approved |
Octopus Deploy - Tentacle 5.0.8 | 261 | Friday, December 6, 2019 | Approved |
Octopus Deploy - Tentacle 5.0.7 | 354 | Tuesday, December 3, 2019 | Approved |
Octopus Deploy - Tentacle 5.0.6 | 8981 | Monday, October 28, 2019 | Approved |
Octopus Deploy - Tentacle 5.0.5 | 5710 | Monday, September 16, 2019 | Approved |
Octopus Deploy - Tentacle 5.0.4 | 670 | Friday, September 6, 2019 | Approved |
Octopus Deploy - Tentacle 5.0.3 | 353 | Monday, September 2, 2019 | Approved |
Octopus Deploy - Tentacle 5.0.2 | 6261 | Monday, August 5, 2019 | Approved |
Octopus Deploy - Tentacle 5.0.1 | 520 | Thursday, August 1, 2019 | Approved |
Octopus Deploy - Tentacle 5.0.0 | 957 | Friday, July 26, 2019 | Approved |
Octopus Deploy - Tentacle 4.0.7 | 127 | Monday, August 5, 2019 | Approved |
Octopus Deploy - Tentacle 4.0.6 | 774 | Tuesday, July 23, 2019 | Approved |
Octopus Deploy - Tentacle 4.0.5 | 11059 | Thursday, June 27, 2019 | Approved |
Octopus Deploy - Tentacle 4.0.3 | 1205 | Monday, June 17, 2019 | Approved |
Octopus Deploy - Tentacle 4.0.1 | 8404 | Thursday, February 28, 2019 | Approved |
Octopus Deploy - Tentacle 4.0.0 | 3692 | Monday, January 28, 2019 | Approved |
Octopus Deploy - Tentacle 3.25.0 | 2723 | Thursday, December 20, 2018 | Approved |
Octopus Deploy - Tentacle 3.24.0 | 3622 | Thursday, December 6, 2018 | Approved |
Octopus Deploy - Tentacle 3.23.2 | 29496 | Tuesday, October 30, 2018 | Approved |
Octopus Deploy - Tentacle 3.23.1 | 1831 | Thursday, October 11, 2018 | Approved |
Octopus Deploy - Tentacle 3.23.0 | 840 | Sunday, October 7, 2018 | Approved |
Octopus Deploy - Tentacle 3.22.0 | 28064 | Sunday, June 10, 2018 | Approved |
Octopus Deploy - Tentacle 3.21.0 | 1893 | Thursday, May 24, 2018 | Approved |
Octopus Deploy - Tentacle 3.20.1 | 6596 | Thursday, April 26, 2018 | Approved |
Octopus Deploy - Tentacle 3.20.0 | 1133 | Wednesday, April 18, 2018 | Approved |
Octopus Deploy - Tentacle 3.19.2 | 1342 | Friday, April 13, 2018 | Approved |
Octopus Deploy - Tentacle 3.19.1 | 3293 | Wednesday, April 4, 2018 | Approved |
Octopus Deploy - Tentacle 3.19.0 | 3640 | Monday, March 5, 2018 | Approved |
Octopus Deploy - Tentacle 3.18.0 | 638 | Thursday, March 1, 2018 | Approved |
Octopus Deploy - Tentacle 3.17.0 | 6164 | Wednesday, January 31, 2018 | Approved |
Octopus Deploy - Tentacle 3.16.4 | 1608 | Wednesday, January 24, 2018 | Approved |
Octopus Deploy - Tentacle 3.16.3 | 4459 | Monday, December 4, 2017 | Approved |
Octopus Deploy - Tentacle 3.16.2 | 977 | Thursday, November 23, 2017 | Approved |
Octopus Deploy - Tentacle 3.16.1 | 2893 | Sunday, November 5, 2017 | Approved |
Octopus Deploy - Tentacle 3.16.0 | 2346 | Wednesday, October 4, 2017 | Approved |
Octopus Deploy - Tentacle 3.15.8 | 2223 | Monday, September 11, 2017 | Approved |
Octopus Deploy - Tentacle 3.15.7 | 1097 | Tuesday, August 29, 2017 | Approved |
Octopus Deploy - Tentacle 3.15.6 | 1631 | Tuesday, August 8, 2017 | Approved |
Octopus Deploy - Tentacle 3.15.5 | 377 | Friday, August 4, 2017 | Approved |
Octopus Deploy - Tentacle 3.15.4 | 359 | Wednesday, August 2, 2017 | Approved |
Octopus Deploy - Tentacle 3.15.3 | 460 | Thursday, July 27, 2017 | Approved |
Octopus Deploy - Tentacle 3.15.2 | 920 | Wednesday, July 19, 2017 | Approved |
Octopus Deploy - Tentacle 3.13.10 | 2362 | Wednesday, June 7, 2017 | Approved |
Octopus Deploy - Tentacle 3.13.9 | 1631 | Thursday, June 1, 2017 | Approved |
Octopus Deploy - Tentacle 3.13.8 | 396 | Monday, May 29, 2017 | Approved |
Octopus Deploy - Tentacle 3.13.7 | 724 | Monday, May 22, 2017 | Approved |
Octopus Deploy - Tentacle 3.13.6 | 388 | Thursday, May 18, 2017 | Approved |
Octopus Deploy - Tentacle 3.13.5 | 330 | Wednesday, May 17, 2017 | Approved |
Octopus Deploy - Tentacle 3.13.4 | 312 | Tuesday, May 16, 2017 | Approved |
Octopus Deploy - Tentacle 3.13.3 | 568 | Thursday, May 11, 2017 | Approved |
Octopus Deploy - Tentacle 3.13.2 | 414 | Tuesday, May 9, 2017 | Approved |
Octopus Deploy - Tentacle 3.13.1 | 305 | Monday, May 8, 2017 | Approved |
Octopus Deploy - Tentacle 3.13.0 | 419 | Wednesday, May 3, 2017 | Approved |
Octopus Deploy - Tentacle 3.12.9 | 349 | Tuesday, May 2, 2017 | Approved |
Octopus Deploy - Tentacle 3.12.8 | 670 | Thursday, April 27, 2017 | Approved |
Octopus Deploy - Tentacle 3.12.7 | 952 | Wednesday, April 26, 2017 | Approved |
Octopus Deploy - Tentacle 3.12.6 | 9755 | Thursday, April 20, 2017 | Approved |
Octopus Deploy - Tentacle 3.12.5 | 541 | Monday, April 17, 2017 | Approved |
Octopus Deploy - Tentacle 3.12.4 | 706 | Tuesday, April 11, 2017 | Approved |
Octopus Deploy - Tentacle 3.12.3 | 253 | Tuesday, April 11, 2017 | Approved |
Octopus Deploy - Tentacle 3.12.2 | 318 | Monday, April 10, 2017 | Approved |
Octopus Deploy - Tentacle 3.12.1 | 291 | Friday, April 7, 2017 | Approved |
Octopus Deploy - Tentacle 3.12.0 | 393 | Tuesday, April 4, 2017 | Approved |
Octopus Deploy - Tentacle 3.11.18 | 319 | Monday, April 3, 2017 | Approved |
Octopus Deploy - Tentacle 3.11.17 | 260 | Monday, April 3, 2017 | Approved |
Octopus Deploy - Tentacle 3.11.16 | 479 | Wednesday, March 29, 2017 | Approved |
Octopus Deploy - Tentacle 3.11.15 | 385 | Monday, March 27, 2017 | Approved |
Octopus Deploy - Tentacle 3.11.14 | 344 | Thursday, March 23, 2017 | Approved |
Octopus Deploy - Tentacle 3.11.13 | 378 | Tuesday, March 21, 2017 | Approved |
Octopus Deploy - Tentacle 3.11.12 | 359 | Monday, March 20, 2017 | Approved |
Octopus Deploy - Tentacle 3.11.11 | 475 | Wednesday, March 15, 2017 | Approved |
Octopus Deploy - Tentacle 3.11.10 | 424 | Monday, March 13, 2017 | Approved |
Octopus Deploy - Tentacle 3.11.9 | 396 | Thursday, March 9, 2017 | Approved |
Octopus Deploy - Tentacle 3.11.8 | 269 | Thursday, March 9, 2017 | Approved |
Octopus Deploy - Tentacle 3.11.7 | 354 | Tuesday, March 7, 2017 | Approved |
Octopus Deploy - Tentacle 3.11.6 | 277 | Monday, March 6, 2017 | Approved |
Octopus Deploy - Tentacle 3.11.5 | 561 | Friday, March 3, 2017 | Approved |
Octopus Deploy - Tentacle 3.11.4 | 426 | Wednesday, March 1, 2017 | Approved |
Octopus Deploy - Tentacle 3.11.3 | 556 | Tuesday, February 28, 2017 | Approved |
Octopus Deploy - Tentacle 3.11.2 | 301 | Monday, February 27, 2017 | Approved |
Octopus Deploy - Tentacle 3.11.1 | 313 | Friday, February 24, 2017 | Approved |
Octopus Deploy - Tentacle 3.11.0 | 336 | Wednesday, February 22, 2017 | Approved |
Octopus Deploy - Tentacle 3.10.1 | 412 | Monday, February 20, 2017 | Approved |
Octopus Deploy - Tentacle 3.10.0 | 1421 | Wednesday, February 15, 2017 | Approved |
Octopus Deploy - Tentacle 3.9.0 | 287 | Tuesday, February 14, 2017 | Approved |
Octopus Deploy - Tentacle 3.8.9 | 3222 | Monday, February 13, 2017 | Approved |
Octopus Deploy - Tentacle 3.8.8 | 374 | Thursday, February 9, 2017 | Approved |
Octopus Deploy - Tentacle 3.8.7 | 327 | Tuesday, February 7, 2017 | Approved |
Octopus Deploy - Tentacle 3.8.6 | 272 | Monday, February 6, 2017 | Approved |
Octopus Deploy - Tentacle 3.8.5 | 1417 | Wednesday, February 1, 2017 | Approved |
Octopus Deploy - Tentacle 3.8.4 | 512 | Tuesday, January 31, 2017 | Approved |
Octopus Deploy - Tentacle 3.8.3 | 299 | Monday, January 30, 2017 | Approved |
Octopus Deploy - Tentacle 3.8.2 | 517 | Tuesday, January 24, 2017 | Approved |
Octopus Deploy - Tentacle 3.8.1 | 458 | Thursday, January 19, 2017 | Approved |
Octopus Deploy - Tentacle 3.8.0 | 327 | Wednesday, January 18, 2017 | Approved |
Octopus Deploy - Tentacle 3.7.18 | 345 | Monday, January 16, 2017 | Approved |
Octopus Deploy - Tentacle 3.7.17 | 275 | Sunday, January 15, 2017 | Approved |
Octopus Deploy - Tentacle 3.7.16 | 315 | Thursday, January 12, 2017 | Approved |
Octopus Deploy - Tentacle 3.7.15 | 353 | Thursday, January 12, 2017 | Approved |
Octopus Deploy - Tentacle 3.7.14 | 328 | Tuesday, January 10, 2017 | Approved |
Octopus Deploy - Tentacle 3.7.13 | 275 | Monday, January 9, 2017 | Approved |
Octopus Deploy - Tentacle 3.7.12 | 462 | Sunday, January 8, 2017 | Approved |
Octopus Deploy - Tentacle 3.7.11 | 341 | Wednesday, January 4, 2017 | Approved |
Octopus Deploy - Tentacle 3.7.10 | 530 | Wednesday, December 21, 2016 | Approved |
Octopus Deploy - Tentacle 3.7.9 | 317 | Monday, December 19, 2016 | Approved |
Octopus Deploy - Tentacle 3.7.8 | 277 | Monday, December 19, 2016 | Approved |
Octopus Deploy - Tentacle 3.7.7 | 355 | Thursday, December 15, 2016 | Approved |
Octopus Deploy - Tentacle 3.7.6 | 307 | Wednesday, December 14, 2016 | Approved |
Octopus Deploy - Tentacle 3.7.5 | 396 | Monday, December 12, 2016 | Approved |
Octopus Deploy - Tentacle 3.7.4 | 306 | Thursday, December 8, 2016 | Approved |
Octopus Deploy - Tentacle 3.7.3 | 287 | Thursday, December 8, 2016 | Approved |
Octopus Deploy - Tentacle 3.7.2 | 302 | Tuesday, December 6, 2016 | Approved |
Octopus Deploy - Tentacle 3.7.1 | 340 | Tuesday, December 6, 2016 | Approved |
Octopus Deploy - Tentacle 3.7.0 | 257 | Tuesday, December 6, 2016 | Approved |
Octopus Deploy - Tentacle 3.6.2 | 279 | Monday, December 5, 2016 | Approved |
Octopus Deploy - Tentacle 3.6.1 | 338 | Monday, December 5, 2016 | Approved |
Octopus Deploy - Tentacle 3.6.0 | 362 | Thursday, December 1, 2016 | Approved |
Octopus Deploy - Tentacle 3.5.9 | 447 | Wednesday, November 30, 2016 | Approved |
Octopus Deploy - Tentacle 3.5.8 | 293 | Wednesday, November 30, 2016 | Approved |
Octopus Deploy - Tentacle 3.5.7 | 310 | Tuesday, November 29, 2016 | Approved |
Octopus Deploy - Tentacle 3.5.6 | 284 | Tuesday, November 29, 2016 | Approved |
Octopus Deploy - Tentacle 3.5.5 | 249 | Monday, November 28, 2016 | Approved |
Octopus Deploy - Tentacle 3.5.4 | 328 | Monday, November 28, 2016 | Approved |
Octopus Deploy - Tentacle 3.5.3 | 287 | Friday, November 25, 2016 | Approved |
Octopus Deploy - Tentacle 3.5.2 | 543 | Thursday, November 17, 2016 | Approved |
Octopus Deploy - Tentacle 3.5.1 | 593 | Tuesday, November 8, 2016 | Approved |
Octopus Deploy - Tentacle 3.5.0 | 368 | Thursday, November 3, 2016 | Approved |
Octopus Deploy - Tentacle 3.4.15 | 946 | Monday, October 31, 2016 | Approved |
Octopus Deploy - Tentacle 3.4.14 | 726 | Monday, October 24, 2016 | Approved |
Octopus Deploy - Tentacle 3.4.13 | 472 | Monday, October 17, 2016 | Approved |
Octopus Deploy - Tentacle 3.4.12 | 745 | Thursday, October 6, 2016 | Approved |
Octopus Deploy - Tentacle 3.4.11 | 792 | Tuesday, September 27, 2016 | Approved |
Octopus Deploy - Tentacle 3.4.10 | 627 | Thursday, September 22, 2016 | Approved |
Octopus Deploy - Tentacle 3.4.9 | 532 | Thursday, September 15, 2016 | Approved |
Octopus Deploy - Tentacle 3.4.8 | 525 | Wednesday, September 14, 2016 | Approved |
Octopus Deploy - Tentacle 3.4.7 | 352 | Monday, September 12, 2016 | Approved |
Octopus Deploy - Tentacle 3.4.6 | 306 | Friday, September 9, 2016 | Approved |
Octopus Deploy - Tentacle 3.4.5 | 620 | Tuesday, September 6, 2016 | Approved |
Octopus Deploy - Tentacle 3.4.4 | 470 | Tuesday, September 6, 2016 | Approved |
Octopus Deploy - Tentacle 3.4.3 | 306 | Tuesday, September 6, 2016 | Approved |
Octopus Deploy - Tentacle 3.4.2 | 395 | Monday, September 5, 2016 | Approved |
Octopus Deploy - Tentacle 3.4.1 | 677 | Thursday, August 25, 2016 | Approved |
Octopus Deploy - Tentacle 3.4.0 | 14430 | Wednesday, August 24, 2016 | Approved |
Octopus Deploy - Tentacle 3.4.0-beta0002 | 302 | Friday, July 22, 2016 | Approved |
Octopus Deploy - Tentacle 3.4.0-beta0001 | 500 | Tuesday, June 28, 2016 | Approved |
Octopus Deploy - Tentacle 3.3.27 | 694 | Thursday, August 11, 2016 | Approved |
Octopus Deploy - Tentacle 3.3.26 | 43027 | Tuesday, August 9, 2016 | Approved |
Octopus Deploy - Tentacle 3.3.25 | 333 | Monday, August 8, 2016 | Approved |
Octopus Deploy - Tentacle 3.3.24 | 1648 | Thursday, July 28, 2016 | Approved |
Octopus Deploy - Tentacle 3.3.23 | 400 | Tuesday, July 26, 2016 | Approved |
Octopus Deploy - Tentacle 3.3.22 | 295 | Thursday, July 14, 2016 | Approved |
Octopus Deploy - Tentacle 3.3.21 | 256 | Tuesday, July 12, 2016 | Approved |
Octopus Deploy - Tentacle 3.3.20 | 282 | Wednesday, June 29, 2016 | Approved |
Octopus Deploy - Tentacle 3.3.19 | 439 | Wednesday, June 22, 2016 | Approved |
Octopus Deploy - Tentacle 3.3.18 | 17287 | Monday, June 20, 2016 | Approved |
Octopus Deploy - Tentacle 3.3.17 | 1187 | Friday, June 3, 2016 | Approved |
Octopus Deploy - Tentacle 3.3.16 | 278 | Wednesday, June 1, 2016 | Approved |
Octopus Deploy - Tentacle 3.3.15 | 295 | Thursday, May 26, 2016 | Approved |
Octopus Deploy - Tentacle 3.3.14 | 290 | Friday, May 20, 2016 | Approved |
Octopus Deploy - Tentacle 3.3.13 | 244 | Thursday, May 19, 2016 | Approved |
Octopus Deploy - Tentacle 3.3.12 | 7665 | Tuesday, May 10, 2016 | Approved |
Octopus Deploy - Tentacle 3.3.11 | 1262 | Wednesday, May 4, 2016 | Approved |
Octopus Deploy - Tentacle 3.3.10 | 9641 | Tuesday, April 26, 2016 | Approved |
Octopus Deploy - Tentacle 3.3.9 | 3604 | Thursday, April 21, 2016 | Approved |
Octopus Deploy - Tentacle 3.3.8 | 1842 | Thursday, April 14, 2016 | Approved |
Octopus Deploy - Tentacle 3.3.7 | 306 | Wednesday, April 13, 2016 | Approved |
Octopus Deploy - Tentacle 3.3.6 | 796 | Friday, April 1, 2016 | Approved |
Octopus Deploy - Tentacle 3.3.5 | 314 | Thursday, March 31, 2016 | Approved |
Octopus Deploy - Tentacle 3.3.4 | 829 | Monday, March 21, 2016 | Approved |
Octopus Deploy - Tentacle 3.3.3 | 721 | Monday, March 14, 2016 | Approved |
Octopus Deploy - Tentacle 3.3.2 | 398 | Tuesday, March 8, 2016 | Approved |
Octopus Deploy - Tentacle 3.3.1 | 511 | Wednesday, March 2, 2016 | Approved |
Octopus Deploy - Tentacle 3.3.0 | 317 | Monday, February 29, 2016 | Approved |
Octopus Deploy - Tentacle 3.3.0-beta0002 | 281 | Tuesday, February 16, 2016 | Approved |
Octopus Deploy - Tentacle 3.3.0-beta0001 | 265 | Friday, January 29, 2016 | Approved |
Octopus Deploy - Tentacle 3.2.24 | 447 | Monday, February 22, 2016 | Approved |
Octopus Deploy - Tentacle 3.2.23 | 832 | Thursday, February 11, 2016 | Approved |
Octopus Deploy - Tentacle 3.2.22 | 577 | Friday, February 5, 2016 | Approved |
Octopus Deploy - Tentacle 3.2.21 | 580 | Friday, January 29, 2016 | Approved |
Octopus Deploy - Tentacle 3.2.20 | 311 | Monday, January 25, 2016 | Approved |
Octopus Deploy - Tentacle 3.2.19 | 418 | Tuesday, January 19, 2016 | Approved |
Octopus Deploy - Tentacle 3.2.18 | 255 | Tuesday, January 19, 2016 | Approved |
Octopus Deploy - Tentacle 3.2.17 | 1368 | Thursday, January 14, 2016 | Approved |
Octopus Deploy - Tentacle 3.2.16 | 276 | Tuesday, January 12, 2016 | Approved |
Octopus Deploy - Tentacle 3.2.15 | 507 | Thursday, January 7, 2016 | Approved |
Octopus Deploy - Tentacle 3.2.14 | 309 | Tuesday, January 5, 2016 | Approved |
Octopus Deploy - Tentacle 3.2.13 | 659 | Friday, December 18, 2015 | Approved |
Octopus Deploy - Tentacle 3.2.12 | 274 | Thursday, December 17, 2015 | Approved |
Octopus Deploy - Tentacle 3.2.11 | 554 | Monday, December 14, 2015 | Approved |
Octopus Deploy - Tentacle 3.2.10 | 243 | Friday, December 11, 2015 | Approved |
Octopus Deploy - Tentacle 3.2.9 | 324 | Tuesday, December 8, 2015 | Approved |
Octopus Deploy - Tentacle 3.2.8 | 363 | Thursday, December 3, 2015 | Approved |
Octopus Deploy - Tentacle 3.2.7 | 306 | Monday, November 30, 2015 | Approved |
Octopus Deploy - Tentacle 3.2.6 | 236 | Tuesday, November 24, 2015 | Approved |
Octopus Deploy - Tentacle 3.2.5 | 235 | Tuesday, November 24, 2015 | Approved |
Octopus Deploy - Tentacle 3.2.4 | 255 | Friday, November 20, 2015 | Approved |
Octopus Deploy - Tentacle 3.2.3 | 405 | Monday, November 16, 2015 | Approved |
Octopus Deploy - Tentacle 3.2.2 | 392 | Thursday, November 12, 2015 | Approved |
Octopus Deploy - Tentacle 3.2.1 | 305 | Friday, November 6, 2015 | Approved |
Octopus Deploy - Tentacle 3.2.0 | 288 | Tuesday, November 3, 2015 | Approved |
Octopus Deploy - Tentacle 3.2.0-beta0001 | 236 | Monday, October 26, 2015 | Approved |
Octopus Deploy - Tentacle 3.1.7 | 248 | Monday, November 2, 2015 | Approved |
Octopus Deploy - Tentacle 3.1.6 | 277 | Friday, October 30, 2015 | Approved |
Octopus Deploy - Tentacle 3.1.5 | 346 | Wednesday, October 21, 2015 | Approved |
Octopus Deploy - Tentacle 3.1.4 | 328 | Tuesday, October 13, 2015 | Approved |
Octopus Deploy - Tentacle 3.1.3 | 333 | Friday, October 2, 2015 | Approved |
Octopus Deploy - Tentacle 3.1.2 | 609 | Monday, September 28, 2015 | Approved |
Octopus Deploy - Tentacle 3.1.1 | 339 | Monday, September 21, 2015 | Approved |
Octopus Deploy - Tentacle 3.1.0 | 296 | Friday, September 18, 2015 | Approved |
Octopus Deploy - Tentacle 3.1.0-beta0002 | 287 | Saturday, September 5, 2015 | Approved |
Octopus Deploy - Tentacle 3.1.0-beta0001 | 268 | Thursday, September 3, 2015 | Approved |
Octopus Deploy - Tentacle 3.0.26 | 305 | Monday, June 27, 2016 | Approved |
Octopus Deploy - Tentacle 3.0.25 | 273 | Friday, December 18, 2015 | Approved |
Octopus Deploy - Tentacle 3.0.24 | 257 | Tuesday, September 15, 2015 | Approved |
Octopus Deploy - Tentacle 3.0.23 | 300 | Thursday, September 10, 2015 | Approved |
Octopus Deploy - Tentacle 3.0.22 | 287 | Wednesday, September 9, 2015 | Approved |
Octopus Deploy - Tentacle 3.0.21 | 497 | Wednesday, September 2, 2015 | Approved |
Octopus Deploy - Tentacle 3.0.20 | 306 | Monday, August 31, 2015 | Approved |
Octopus Deploy - Tentacle 3.0.19.2485 | 317 | Monday, August 24, 2015 | Approved |
Octopus Deploy - Tentacle 3.0.18.2471 | 465 | Friday, August 21, 2015 | Approved |
Octopus Deploy - Tentacle 3.0.17.2462 | 251 | Thursday, August 20, 2015 | Approved |
Octopus Deploy - Tentacle 3.0.16.2438 | 276 | Tuesday, August 18, 2015 | Approved |
Octopus Deploy - Tentacle 3.0.16.2428 | 272 | Tuesday, August 18, 2015 | Approved |
Octopus Deploy - Tentacle 3.0.15.2418 | 468 | Monday, August 17, 2015 | Approved |
Octopus Deploy - Tentacle 3.0.13.2386 | 486 | Thursday, August 13, 2015 | Approved |
Octopus Deploy - Tentacle 3.0.12.2366 | 423 | Tuesday, August 11, 2015 | Approved |
Octopus Deploy - Tentacle 3.0.11.2328 | 395 | Friday, August 7, 2015 | Approved |
Octopus Deploy - Tentacle 3.0.10.2278 | 243 | Tuesday, August 4, 2015 | Approved |
Octopus Deploy - Tentacle 3.0.9.2259 | 290 | Monday, August 3, 2015 | Approved |
Octopus Deploy - Tentacle 3.0.8.2251 | 277 | Friday, July 31, 2015 | Approved |
Octopus Deploy - Tentacle 3.0.7.2204 | 265 | Wednesday, July 29, 2015 | Approved |
Octopus Deploy - Tentacle 3.0.6.2140 | 356 | Monday, July 27, 2015 | Approved |
Octopus Deploy - Tentacle 3.0.5.2124 | 268 | Friday, July 24, 2015 | Approved |
Octopus Deploy - Tentacle 3.0.4.2105 | 256 | Thursday, July 23, 2015 | Approved |
Octopus Deploy - Tentacle 3.0.3.2084 | 295 | Wednesday, July 22, 2015 | Approved |
Octopus Deploy - Tentacle 3.0.2.2077 | 229 | Tuesday, July 21, 2015 | Approved |
Octopus Deploy - Tentacle 3.0.1.2063 | 318 | Monday, July 20, 2015 | Approved |
Octopus Deploy - Tentacle 2.6.5.1010 | 2270 | Sunday, April 19, 2015 | Approved |
Octopus Deploy - Tentacle 2.6.4.951 | 716 | Tuesday, March 17, 2015 | Approved |
Octopus Deploy - Tentacle 2.6.3.886 | 682 | Monday, February 23, 2015 | Approved |
Octopus Deploy - Tentacle 2.6.2.845 | 816 | Thursday, February 12, 2015 | Approved |
Octopus Deploy - Tentacle 2.6.1.796 | 405 | Wednesday, February 4, 2015 | Approved |
Octopus Deploy - Tentacle 2.6.0.778 | 953 | Thursday, December 18, 2014 | Approved |
Octopus Deploy - Tentacle 2.6.0.751 | 458 | Thursday, November 27, 2014 | Approved |
Octopus Deploy - Tentacle 2.6.0.749 | 328 | Tuesday, November 25, 2014 | Approved |
Octopus Deploy - Tentacle 2.5.13.884 | 305 | Monday, February 23, 2015 | Approved |
Octopus Deploy - Tentacle 2.5.12.666 | 457 | Thursday, November 6, 2014 | Approved |
Octopus Deploy - Tentacle 2.5.11.614 | 616 | Thursday, October 23, 2014 | Approved |
Octopus Deploy - Tentacle 2.5.11.610 | 295 | Thursday, October 23, 2014 | Approved |
Octopus Deploy - Tentacle 2.5.11.585 | 307 | Wednesday, October 22, 2014 | Approved |
Octopus Deploy - Tentacle 2.5.10.567 | 451 | Tuesday, October 7, 2014 | Approved |
Octopus Deploy - Tentacle 2.5.9.555 | 299 | Thursday, October 2, 2014 | Approved |
Octopus Deploy - Tentacle 2.5.9.554 | 323 | Wednesday, October 1, 2014 | Approved |
Octopus Deploy - Tentacle 2.5.9.550 | 278 | Wednesday, October 1, 2014 | Approved |
Octopus Deploy - Tentacle 2.5.8.447 | 544 | Wednesday, August 27, 2014 | Approved |
Octopus Deploy - Tentacle 2.5.7.384 | 420 | Thursday, August 7, 2014 | Approved |
Octopus Deploy - Tentacle 2.5.6.356 | 328 | Tuesday, August 5, 2014 | Approved |
Octopus Deploy - Tentacle 2.5.5.318 | 344 | Monday, July 28, 2014 | Approved |
Octopus Deploy - Tentacle 2.5.5.313 | 273 | Monday, July 28, 2014 | Approved |
Octopus Deploy - Tentacle 2.5.4.280 | 366 | Monday, July 21, 2014 | Approved |
Octopus Deploy - Tentacle 2.5.2.221 | 358 | Tuesday, July 1, 2014 | Approved |
Octopus Deploy - Tentacle 2.4.10.235 | 327 | Thursday, July 3, 2014 | Approved |
Octopus Deploy - Tentacle 2.4.9.167 | 496 | Friday, June 20, 2014 | Approved |
Octopus Deploy - Tentacle 2.4.9.126 | 309 | Monday, June 16, 2014 | Approved |
Octopus Deploy - Tentacle 2.4.8.107 | 305 | Friday, June 13, 2014 | Approved |
Octopus Deploy - Tentacle 2.4.7.85 | 327 | Thursday, May 29, 2014 | Approved |
Octopus Deploy - Tentacle 2.4.6.54 | 319 | Thursday, May 22, 2014 | Approved |
Octopus Deploy - Tentacle 2.4.5.46 | 356 | Wednesday, May 14, 2014 | Approved |
Octopus Deploy - Tentacle 2.4.4.43 | 327 | Thursday, May 8, 2014 | Approved |
Octopus Deploy - Tentacle 2.4.4.42 | 293 | Wednesday, May 7, 2014 | Approved |
Octopus Deploy - Tentacle 2.4.4.41 | 307 | Wednesday, May 7, 2014 | Approved |
Octopus Deploy - Tentacle 2.4.3.26 | 281 | Tuesday, May 6, 2014 | Approved |
OctopusDeploy.Tentacle 2.4.3.25 | 340 | Tuesday, May 6, 2014 | Approved |
This package has no dependencies.
Ground Rules:
- This discussion is only about Octopus Deploy - Tentacle and the Octopus Deploy - Tentacle 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 Octopus Deploy - Tentacle, 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.