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:
192,854
Downloads of v 1.5.75:
590
Last Update:
06 Feb 2020
Package Maintainer(s):
Software Author(s):
- Resin.io
Tags:
admin usb format boot cross-platform foss balena etcher balenaetcher img flasher dd write sd- Software Specific:
- Software Site
- Software Source
- Software License
- Software Docs
- Software Issues
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download

Etcher
This is not the latest version of Etcher available.
- Software Specific:
- Software Site
- Software Source
- Software License
- Software Docs
- Software Issues
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Downloads:
192,854
Downloads of v 1.5.75:
590
Maintainer(s):
Software Author(s):
- Resin.io
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.
Etcher 1.5.75
This is not the latest version of Etcher available.
All Checks are Passing
2 Passing Test
To install Etcher, run the following command from the command line or from PowerShell:
To upgrade Etcher, run the following command from the command line or from PowerShell:
To uninstall Etcher, 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 etcher --internalize --version=1.5.75 --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 etcher -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 etcher -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 etcher installed
win_chocolatey:
name: etcher
state: present
version: 1.5.75
source: STEP 3 URL
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
chocolatey_package 'etcher' do
action :install
version '1.5.75'
source 'STEP 3 URL'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
Chocolatey::Ensure-Package
(
Name: etcher,
Version: 1.5.75,
Source: STEP 3 URL
);
Requires Otter Chocolatey Extension. See docs at https://inedo.com/den/otter/chocolatey.
cChocoPackageInstaller etcher
{
Name = 'etcher'
Ensure = 'Present'
Version = '1.5.75'
Source = 'STEP 3 URL'
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'etcher':
provider => 'chocolatey',
ensure => '1.5.75',
source => 'STEP 3 URL',
}
Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.
salt '*' chocolatey.install etcher version="1.5.75" 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...
This package was approved as a trusted package on 06 Feb 2020.
Etcher is a powerful OS image flasher built with web technologies to ensure flashing an SDCard or USB drive is a pleasant and safe experience. It protects you from accidentally writing to your hard-drives, ensures every byte of data was written correctly and much more.
Features
- Validated Burning
No more writing images on corrupted cards and wondering why your device isn't booting. - Hard Drive Friendly
Makes drive selection obvious to avoid wiping your entire hard-drive - Beautiful Interface
Who said burning SD cards has to be an eyesore. - Open Source
Made with JS, HTML, node.js and Electron. Dive in and contribute! - Cross Platform
Works for everyone, no more complicated install instructions.
$ErrorActionPreference = 'Stop'
$packageArgs = @{
packageName = 'etcher'
fileType = 'exe'
url = 'https://github.com/balena-io/etcher/releases/download/v1.5.75/balenaEtcher-Setup-1.5.75.exe'
checksum = '6e566f42227021387c54568b752630fbf1b92930f9c4db5592488fb6ef25d7a5'
checksumType = 'sha256'
silentArgs = '/S'
validExitCodes = @(0)
softwareName = 'etcher*'
}
Install-ChocolateyPackage @packageArgs
Log in or click on link to see number of positives.
- etcher.1.5.75.nupkg (7e464d840035) - ## / 62
- balenaEtcher-Setup-1.5.75.exe (6e566f422270) - ## / 65
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 |
---|---|---|---|
Etcher 1.5.117 | 3083 | Wednesday, April 7, 2021 | Approved |
Etcher 1.5.116 | 8640 | Thursday, February 4, 2021 | Approved |
Etcher 1.5.115 | 4710 | Tuesday, January 19, 2021 | Approved |
Etcher 1.5.114 | 2062 | Friday, January 15, 2021 | Approved |
Etcher 1.5.112 | 7080 | Friday, December 4, 2020 | Approved |
Etcher 1.5.111 | 3379 | Tuesday, November 24, 2020 | Approved |
Etcher 1.5.110 | 4434 | Friday, November 6, 2020 | Approved |
Etcher 1.5.109.20201003 | 5763 | Saturday, October 3, 2020 | Approved |
Etcher 1.5.109 | 4017 | Tuesday, September 15, 2020 | Approved |
Etcher 1.5.108 | 1807 | Friday, September 11, 2020 | Approved |
Etcher 1.5.107 | 1778 | Monday, September 7, 2020 | Approved |
Etcher 1.5.106 | 2812 | Friday, August 28, 2020 | Approved |
Etcher 1.5.105 | 1153 | Thursday, August 27, 2020 | Approved |
Etcher 1.5.104 | 2177 | Saturday, August 22, 2020 | Approved |
Etcher 1.5.103 | 1235 | Thursday, August 20, 2020 | Approved |
Etcher 1.5.102 | 4364 | Wednesday, July 29, 2020 | Approved |
Etcher 1.5.101 | 4023 | Friday, July 10, 2020 | Approved |
Etcher 1.5.100 | 3677 | Tuesday, June 23, 2020 | Approved |
Etcher 1.5.99 | 2804 | Saturday, June 13, 2020 | Approved |
Etcher 1.5.98 | 1086 | Thursday, June 11, 2020 | Approved |
Etcher 1.5.97 | 1402 | Tuesday, June 9, 2020 | Approved |
Etcher 1.5.95 | 2430 | Monday, June 1, 2020 | Approved |
Etcher 1.5.94 | 1659 | Thursday, May 28, 2020 | Approved |
Etcher 1.5.93 | 1288 | Tuesday, May 26, 2020 | Approved |
Etcher 1.5.91 | 1632 | Thursday, May 21, 2020 | Approved |
Etcher 1.5.90 | 528 | Thursday, May 21, 2020 | Approved |
Etcher 1.5.89 | 2427 | Friday, May 15, 2020 | Approved |
Etcher 1.5.88 | 1171 | Wednesday, May 13, 2020 | Approved |
Etcher 1.5.86 | 2161 | Thursday, May 7, 2020 | Approved |
Etcher 1.5.84 | 769 | Wednesday, May 6, 2020 | Approved |
Etcher 1.5.83 | 1891 | Friday, May 1, 2020 | Approved |
Etcher 1.5.82 | 1473 | Tuesday, April 28, 2020 | Approved |
Etcher 1.5.81 | 2766 | Friday, April 17, 2020 | Approved |
Etcher 1.5.80 | 3811 | Wednesday, March 25, 2020 | Approved |
Etcher 1.5.79 | 4482 | Friday, February 21, 2020 | Approved |
Etcher 1.5.78 | 637 | Thursday, February 20, 2020 | Approved |
Etcher 1.5.77 | 992 | Tuesday, February 18, 2020 | Approved |
Etcher 1.5.76 | 2581 | Friday, February 7, 2020 | Approved |
Etcher 1.5.75 | 590 | Thursday, February 6, 2020 | Approved |
Etcher 1.5.74 | 73 | Wednesday, February 5, 2020 | Approved |
Etcher 1.5.73 | 2006 | Wednesday, January 29, 2020 | Approved |
Etcher 1.5.72 | 450 | Tuesday, January 28, 2020 | Approved |
Etcher 1.5.71 | 2669 | Wednesday, January 15, 2020 | Approved |
Etcher 1.5.70 | 4072 | Saturday, December 14, 2019 | Approved |
Etcher 1.5.69 | 1191 | Wednesday, December 11, 2019 | Approved |
Etcher 1.5.68 | 617 | Tuesday, December 10, 2019 | Approved |
Etcher 1.5.67 | 1173 | Saturday, December 7, 2019 | Approved |
Etcher 1.5.66 | 1195 | Wednesday, December 4, 2019 | Approved |
Etcher 1.5.65 | 350 | Tuesday, December 3, 2019 | Approved |
Etcher 1.5.64 | 1468 | Thursday, November 28, 2019 | Approved |
Etcher 1.5.63 | 3144 | Saturday, November 9, 2019 | Approved |
Etcher 1.5.62 | 958 | Thursday, November 7, 2019 | Approved |
Etcher 1.5.61 | 381 | Wednesday, November 6, 2019 | Approved |
Etcher 1.5.60 | 2994 | Saturday, October 19, 2019 | Approved |
Etcher 1.5.59 | 1316 | Monday, October 14, 2019 | Approved |
Etcher 1.5.58 | 1406 | Thursday, October 10, 2019 | Approved |
Etcher 1.5.57 | 3025 | Tuesday, September 17, 2019 | Approved |
Etcher 1.5.56 | 3480 | Wednesday, August 21, 2019 | Approved |
Etcher 1.5.54 | 633 | Tuesday, August 20, 2019 | Approved |
Etcher 1.5.53 | 2112 | Wednesday, August 7, 2019 | Approved |
Etcher 1.5.52 | 2164 | Wednesday, July 24, 2019 | Approved |
Etcher 1.5.51 | 3036 | Saturday, June 29, 2019 | Approved |
Etcher 1.5.50 | 2074 | Saturday, June 15, 2019 | Approved |
Etcher 1.5.49 | 431 | Friday, June 14, 2019 | Approved |
Etcher 1.5.47 | 631 | Wednesday, June 12, 2019 | Approved |
Etcher 1.5.46 | 850 | Monday, June 10, 2019 | Approved |
Etcher 1.5.45 | 1258 | Wednesday, June 5, 2019 | Approved |
Etcher 1.5.44 | 482 | Tuesday, June 4, 2019 | Approved |
Etcher 1.5.43 | 1386 | Tuesday, May 28, 2019 | Approved |
Etcher 1.5.39 | 2075 | Wednesday, May 15, 2019 | Approved |
Etcher 1.5.38 | 604 | Tuesday, May 14, 2019 | Approved |
Etcher 1.5.35 | 903 | Saturday, May 11, 2019 | Approved |
Etcher 1.5.33 | 1745 | Wednesday, May 1, 2019 | Approved |
Etcher 1.5.30 | 1236 | Thursday, April 25, 2019 | Approved |
Etcher 1.5.29 | 701 | Tuesday, April 23, 2019 | Approved |
Etcher 1.5.28 | 786 | Saturday, April 20, 2019 | Approved |
Etcher 1.5.26 | 1417 | Saturday, April 13, 2019 | Approved |
Etcher 1.5.25 | 714 | Thursday, April 11, 2019 | Approved |
Etcher 1.5.24 | 698 | Tuesday, April 9, 2019 | Approved |
Etcher 1.5.23 | 1132 | Thursday, April 4, 2019 | Approved |
Etcher 1.5.22 | 281 | Wednesday, April 3, 2019 | Approved |
Etcher 1.5.20 | 468 | Tuesday, April 2, 2019 | Approved |
Etcher 1.5.19 | 1054 | Friday, March 29, 2019 | Approved |
Etcher 1.5.18 | 640 | Wednesday, March 27, 2019 | Approved |
Etcher 1.5.15 | 438 | Tuesday, March 26, 2019 | Approved |
Etcher 1.5.5 | 2619 | Friday, March 1, 2019 | Approved |
Etcher 1.5.0 | 1207 | Saturday, February 23, 2019 | Approved |
Etcher 1.4.9 | 3476 | Monday, December 24, 2018 | Approved |
Etcher 1.4.8 | 2368 | Saturday, November 24, 2018 | Approved |
Etcher 1.4.7 | 746 | Tuesday, November 20, 2018 | Approved |
Etcher 1.4.6 | 1713 | Tuesday, October 30, 2018 | Approved |
Etcher 1.4.5 | 1598 | Friday, October 12, 2018 | Approved |
Etcher 1.4.4 | 3863 | Friday, April 27, 2018 | Approved |
Etcher 1.4.3 | 673 | Saturday, April 21, 2018 | Approved |
Etcher 1.4.1 | 730 | Friday, April 13, 2018 | Approved |
Etcher 1.4.0 | 517 | Tuesday, April 10, 2018 | Approved |
Etcher 1.3.1 | 1711 | Wednesday, January 24, 2018 | Approved |
Etcher 1.2.1 | 1172 | Friday, December 8, 2017 | Approved |
Etcher 1.2.0 | 703 | Friday, November 24, 2017 | Approved |
Etcher 1.1.2 | 1189 | Wednesday, August 9, 2017 | Approved |
Etcher 1.1.1 | 395 | Wednesday, July 26, 2017 | Approved |
Etcher 1.1.0 | 379 | Friday, July 21, 2017 | Approved |
Etcher 1.0.0 | 503 | Sunday, June 4, 2017 | Approved |
Resin.io
This package has no dependencies.
Ground Rules:
- This discussion is only about Etcher and the Etcher 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 Etcher, 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.