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:

43,144

Downloads of v 6.3.4.27404:

365

Last Update:

10 Jan 2018

Package Maintainer(s):

Software Author(s):

  • David Kocher
  • Yves Langisch

Tags:

cloud ftp sftp webdav s3 openstack swift rackspace cli

duck

This is not the latest version of duck available.

  • 1
  • 2
  • 3

6.3.4.27404 | Updated: 10 Jan 2018

Downloads:

43,144

Downloads of v 6.3.4.27404:

365

Maintainer(s):

Software Author(s):

  • David Kocher
  • Yves Langisch

duck 6.3.4.27404

This is not the latest version of duck available.

  • 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 duck, run the following command from the command line or from PowerShell:

>

To upgrade duck, run the following command from the command line or from PowerShell:

>

To uninstall duck, 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 duck -y --source="'INTERNAL REPO URL'" --version="'6.3.4.27404'" [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 duck -y --source="'INTERNAL REPO URL'" --version="'6.3.4.27404'" 
$exitCode = $LASTEXITCODE

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

Exit $exitCode

- name: Install duck
  win_chocolatey:
    name: duck
    version: '6.3.4.27404'
    source: INTERNAL REPO URL
    state: present

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


chocolatey_package 'duck' do
  action    :install
  source   'INTERNAL REPO URL'
  version  '6.3.4.27404'
end

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


cChocoPackageInstaller duck
{
    Name     = "duck"
    Version  = "6.3.4.27404"
    Source   = "INTERNAL REPO URL"
}

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


package { 'duck':
  ensure   => '6.3.4.27404',
  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 10 Jan 2018.

Description

The universal file transfer tool duck which runs in your shell on Linux and OS X or your Windows command line prompt. Edit files on remote servers, download, upload and copy between servers with FTP, SFTP or WebDAV plus support for cloud storage Amazon S3 OpenStack Swift deployments.


tools\chocolateyInstall.ps1
$packageName = 'duck'
$installerType = 'exe'
$url = 'https://dist.duck.sh//duck-6.3.4.27404.exe'
$silentArgs = '/quiet'
$validExitCodes = @(0)
$checksum = '81830daa8f0aba4c85bbd9eaf1ef17ac44bf3b94e2d8412bfcf621944adb8eb6'
$checksumType = 'sha256'

Install-ChocolateyPackage "$packageName" "$installerType" "$silentArgs" "$url" -validExitCodes $validExitCodes -Checksum "$checksum" -ChecksumType "$checksumType"

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
Cyberduck CLI 8.8.0.41209 145 Friday, March 8, 2024 Approved
Cyberduck CLI 8.7.3.40979 356 Thursday, January 11, 2024 Approved
Cyberduck CLI 8.7.2.40975 32 Thursday, January 11, 2024 Approved
Cyberduck CLI 8.7.0.40629 452 Wednesday, October 18, 2023 Approved
Cyberduck CLI 8.6.3.40040 364 Tuesday, August 15, 2023 Approved
Cyberduck CLI 8.6.2.40032 181 Friday, August 4, 2023 Approved
Cyberduck CLI 8.6.0.39818 413 Tuesday, May 30, 2023 Approved
Cyberduck CLI 8.5.9.39636 373 Wednesday, April 12, 2023 Approved
Cyberduck CLI 8.5.8.39606 131 Thursday, April 6, 2023 Approved
Cyberduck CLI 8.5.6.39394 365 Friday, February 17, 2023 Approved
Cyberduck CLI 8.5.5.39213 248 Thursday, January 26, 2023 Approved
Cyberduck CLI 8.5.4.39083 220 Tuesday, January 10, 2023 Approved
Cyberduck CLI 8.5.3.38959 200 Wednesday, December 21, 2022 Approved
Cyberduck CLI 8.5.2.38799 201 Wednesday, December 7, 2022 Approved
Cyberduck CLI 8.5.1.38745 115 Thursday, December 1, 2022 Approved
Cyberduck CLI 8.5.0.38556 327 Tuesday, November 1, 2022 Approved
Cyberduck CLI 8.4.5.38423 248 Tuesday, October 11, 2022 Approved
Cyberduck CLI 8.4.4.38366 288 Thursday, September 15, 2022 Approved
Cyberduck CLI 8.4.3.38269 282 Thursday, August 18, 2022 Approved
Cyberduck CLI 8.4.2.38090 359 Tuesday, July 12, 2022 Approved
Cyberduck CLI 8.4.1.38006 167 Wednesday, June 29, 2022 Approved
Cyberduck CLI 8.4.0.38000 67 Tuesday, June 28, 2022 Approved
Cyberduck CLI 8.2.3.36880 520 Friday, February 4, 2022 Approved
Cyberduck CLI 8.2.1.36773 82 Wednesday, February 2, 2022 Approved
Cyberduck CLI 8.0.2.36345 1060 Tuesday, November 16, 2021 Approved
Cyberduck CLI 8.0.0.36226 212 Wednesday, October 27, 2021 Approved
Cyberduck CLI 7.10.3.35460 245 Thursday, September 16, 2021 Approved
Cyberduck CLI 7.10.2.35432 340 Wednesday, August 25, 2021 Approved
Cyberduck CLI 7.10.0.35184 330 Thursday, July 8, 2021 Approved
Cyberduck CLI 7.9.1.34974 323 Thursday, May 27, 2021 Approved
Cyberduck CLI 7.9.0.34899 212 Monday, May 10, 2021 Approved
Cyberduck CLI 7.8.5.34493 386 Wednesday, March 31, 2021 Approved
Cyberduck CLI 7.8.3.34411 213 Wednesday, March 17, 2021 Approved
Cyberduck CLI 7.8.2.34203 321 Tuesday, January 26, 2021 Approved
Cyberduck CLI 7.8.1.34119 440 Friday, January 15, 2021 Approved
Cyberduck CLI 7.8.0.34081 166 Tuesday, January 12, 2021 Approved
Cyberduck CLI 7.7.2.33862 342 Wednesday, December 2, 2020 Approved
Cyberduck CLI 7.7.1.33788 181 Thursday, November 19, 2020 Approved
Cyberduck CLI 7.7.0.33744 213 Tuesday, November 10, 2020 Approved
Cyberduck CLI 7.6.2.33520 336 Wednesday, September 30, 2020 Approved
Cyberduck CLI 7.6.1.33485 215 Friday, September 18, 2020 Approved
Cyberduck CLI 7.6.0.33437 169 Thursday, September 10, 2020 Approved
Cyberduck CLI 7.5.1.33324 268 Monday, August 17, 2020 Approved
Cyberduck CLI 7.5.0.33280 186 Wednesday, August 12, 2020 Approved
Cyberduck CLI 7.4.1.33065 404 Tuesday, June 16, 2020 Approved
Cyberduck CLI 7.4.0.32960 308 Tuesday, May 26, 2020 Approved
Cyberduck CLI 7.3.1.32784 321 Tuesday, April 28, 2020 Approved
Cyberduck CLI 7.3.0.32621 155 Friday, March 27, 2020 Approved
Cyberduck CLI 7.2.5.32097 576 Wednesday, January 1, 2020 Approved
duck 7.1.2.31675 448 Tuesday, October 29, 2019 Approved
duck 6.9.4.30164 1018 Wednesday, February 27, 2019 Approved
duck 6.9.3.30061 311 Friday, February 15, 2019 Approved
duck 6.9.0.29768 407 Wednesday, January 16, 2019 Approved
duck 6.8.3.29107 498 Thursday, November 1, 2018 Approved
duck 6.8.2.28974 347 Wednesday, October 17, 2018 Approved
duck 6.8.0.28825 333 Friday, September 21, 2018 Approved
duck 6.7.1.28683 430 Friday, August 17, 2018 Approved
duck 6.7.0.28613 359 Tuesday, August 7, 2018 Approved
duck 6.6.2.28219 485 Thursday, June 21, 2018 Approved
duck 6.6.1.28146 402 Monday, June 4, 2018 Approved
duck 6.6.0.28133 343 Wednesday, May 30, 2018 Approved
duck 6.4.6.27773 563 Wednesday, April 4, 2018 Approved
duck 6.4.4.27722 443 Wednesday, March 14, 2018 Approved
duck 6.4.1.27633 453 Thursday, February 22, 2018 Approved
duck 6.4.0.27606 442 Tuesday, February 13, 2018 Approved
duck 6.3.5.27408 500 Wednesday, January 10, 2018 Approved
duck 6.3.4.27404 365 Wednesday, January 10, 2018 Approved
duck 6.3.3.27375 327 Tuesday, January 9, 2018 Approved
duck 6.3.2.27291 462 Wednesday, December 13, 2017 Approved
duck 6.3.1.27228 427 Thursday, November 30, 2017 Approved
duck 6.3.0.27105 451 Wednesday, November 15, 2017 Approved
duck 6.2.10.26754 427 Friday, October 27, 2017 Approved
duck 6.2.9.26659 419 Monday, October 16, 2017 Approved
duck 6.2.6.26405 561 Saturday, September 9, 2017 Approved
duck 6.2.4.26305 392 Friday, September 1, 2017 Approved
duck 6.2.3.26209 399 Friday, August 25, 2017 Approved
duck 6.2.2.26027 417 Friday, August 11, 2017 Approved
duck 6.2.1.25837 452 Monday, July 31, 2017 Approved
duck 6.2.0.25806 431 Tuesday, July 25, 2017 Approved
duck 6.1.0.25371 513 Wednesday, July 5, 2017 Approved
duck 6.0.4.24953 456 Sunday, June 4, 2017 Approved
duck 6.0.1.24918 445 Tuesday, May 30, 2017 Approved
duck 6.0.0.24625 493 Tuesday, May 9, 2017 Approved
duck 5.4.4.23962 455 Tuesday, April 18, 2017 Approved
duck 5.4.3.23925 417 Thursday, April 13, 2017 Approved
duck 5.4.0.23761 472 Monday, March 13, 2017 Approved
duck 5.3.8.23611 471 Wednesday, March 1, 2017 Approved
duck 5.3.7.23440 466 Monday, February 13, 2017 Approved
duck 5.3.6.23386 390 Monday, February 6, 2017 Approved
duck 5.3.5.23361 397 Sunday, February 5, 2017 Approved
duck 5.3.4.23328 430 Tuesday, January 31, 2017 Approved
duck 5.3.2.23205 488 Wednesday, January 18, 2017 Approved
duck 5.3.0.23185 406 Tuesday, January 17, 2017 Approved
duck 5.2.1.21373 561 Thursday, October 27, 2016 Approved
duck 5.1.4.20974 456 Tuesday, October 11, 2016 Approved
duck 5.1.0.20872 440 Wednesday, August 24, 2016 Approved
duck 5.0.20277 378 Wednesday, May 25, 2016 Approved
duck 5.0.11.20753 366 Tuesday, August 2, 2016 Approved
duck 5.0.9.20675 378 Tuesday, July 19, 2016 Approved
duck 5.0.3.20504 348 Friday, June 17, 2016 Approved
duck 4.9.3.19798 412 Friday, April 22, 2016 Approved
duck 4.9.1.19769 343 Tuesday, April 19, 2016 Approved
duck 4.7.17432 1398 Friday, April 24, 2015 Approved
duck 4.7.3.18412 371 Monday, October 26, 2015 Approved
duck 4.7.2.18004 406 Friday, August 7, 2015 Approved
duck 4.7.1.17920 461 Monday, July 6, 2015 Approved
duck 4.6.5.17000 509 Wednesday, February 25, 2015 Approved
duck 4.6.2.16480 538 Thursday, January 15, 2015 Approved

This package has no dependencies.

Discussion for the duck Package

Ground Rules:

  • This discussion is only about duck and the duck 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 duck, 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