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:
2,401
Downloads of v 1.10:
13
Last Update:
29 Jul 2020
Package Maintainer(s):
Software Author(s):
- Daniel Chýlek
Tags:
twitter tweet tweetdeck management foss free open source desktop client electron- 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

TweetDuck (Install)
This is not the latest version of TweetDuck (Install) 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:
2,401
Downloads of v 1.10:
13
Maintainer(s):
Software Author(s):
- Daniel Chýlek
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.
TweetDuck (Install) 1.10
This is not the latest version of TweetDuck (Install) available.
This Package Contains an Exempted Check
1 Test Passing and 1 Exempted Test
Validation Testing Passed
Verification Testing Exempt:
Indirect dependency on KB2919355 which requires reboot
To install TweetDuck (Install), run the following command from the command line or from PowerShell:
To upgrade TweetDuck (Install), run the following command from the command line or from PowerShell:
To uninstall TweetDuck (Install), 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 tweetduck.install --internalize --version=1.10 --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 tweetduck.install -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 tweetduck.install -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 tweetduck.install installed
win_chocolatey:
name: tweetduck.install
state: present
version: 1.10
source: STEP 3 URL
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
chocolatey_package 'tweetduck.install' do
action :install
version '1.10'
source 'STEP 3 URL'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
Chocolatey::Ensure-Package
(
Name: tweetduck.install,
Version: 1.10,
Source: STEP 3 URL
);
Requires Otter Chocolatey Extension. See docs at https://inedo.com/den/otter/chocolatey.
cChocoPackageInstaller tweetduck.install
{
Name = 'tweetduck.install'
Ensure = 'Present'
Version = '1.10'
Source = 'STEP 3 URL'
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'tweetduck.install':
provider => 'chocolatey',
ensure => '1.10',
source => 'STEP 3 URL',
}
Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.
salt '*' chocolatey.install tweetduck.install version="1.10" 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.
This package is likely a meta/virtual (*) or an installer (*.install) or portable (*.portable) application package.
- Meta/virtual (*) - has a dependency on the *.install or the *.portable package - it is provided for discoverability and for other packages to take a dependency on.
- Portable (*.portable/*.commandline (deprecated naming convention)/*.tool (deprecated naming convention)) - usually zips or archives that require no administrative access to install.
- Install (*.install/*.app (deprecated naming convention)) - uses native installers, usually requires administrative access to install.
Learn more about chocolatey's distinction of installed versus portable apps and/or learn about this kind of package.
This package was approved as a trusted package on 29 Jul 2020.
TweetDuck is an open source Windows client for Twitter utilizing TweetDeck.
$ErrorActionPreference = 'SilentlyContinue';
$stop_application = if (Get-Process -Name TweetDuck -ErrorAction SilentlyContinue) {$false} else {$true}
if ($stop_application -and (Get-Process -Name TweetDuck -ErrorAction SilentlyContinue)) {
Stop-Process -processname TweetDuck
}
$ErrorActionPreference = 'Stop';
$PackageName = $env:ChocolateyPackageName
$App = $PackageName.Split(".")[0]
$InstallDir = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"
$PackageArgs = @{
PackageName = $PackageName
UnzipLocation = $InstallDir
FileType = 'exe'
Url = "https://github.com/chylex/TweetDuck/releases/download/1.10/TweetDuck.exe"
SoftwareName = 'tweetduck*'
Checksum = "b2a7a7c83025639902f0d29654b7ba327abca6b4681dafe489b9a5c8db58c1f3a79c42e03dcc138d9014884039b6a1a50895cb572dc06e1ce0fc09790236e17a"
ChecksumType = 'sha512'
SilentArgs = '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'
ValidExitCodes= @(0)
}
Install-ChocolateyPackage @PackageArgs
$InstallLocation = Get-AppInstallLocation "$PackageName*"
Write-Host "$PackageName registered as $App"
$ErrorActionPreference = 'Stop'
$PackageName = $env:ChocolateyPackageName.Split(".")[0]
[array] $key = Get-UninstallRegistryKey "PackageName*"
if ($key.Count -eq 1) {
$key | ForEach-Object {
$PackageArgs = @{
PackageName = $PackageName
SilentArgs = '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'
FileType = 'EXE'
ValidExitCodes = @(0)
File = "$($_.UninstallString.Replace(' /x86=0', ''))"
}
Uninstall-ChocolateyPackage @PackageArgs
}
}
elseif ($key.Count -eq 0) {
Write-Warning "$PackageName has already been uninstalled by other means."
}
elseif ($key.Count -gt 1) {
Write-Warning "$($key.Count) matches found!"
Write-Warning "To prevent accidental data loss, no programs will be uninstalled."
Write-Warning "Please alert package maintainer the following keys were matched:"
$key | ForEach-Object {Write-Warning "- $($_.DisplayName)"}
}
Log in or click on link to see number of positives.
- tweetduck.install.1.10.nupkg (9319a5b5153d) - ## / 62
- TweetDuck.exe (736718dea9b9) - ## / 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 |
---|---|---|---|
TweetDuck (Install) 1.20 | 116 | Saturday, February 6, 2021 | Approved |
TweetDuck (Install) 1.19.0.2 | 222 | Wednesday, July 29, 2020 | Approved |
TweetDuck (Install) 1.19.0.1 | 25 | Thursday, July 23, 2020 | Approved |
TweetDuck (Install) 1.19 | 27 | Wednesday, July 15, 2020 | Approved |
TweetDuck (Install) 1.18.6 | 32 | Tuesday, June 16, 2020 | Approved |
TweetDuck (Install) 1.18.5 | 38 | Monday, June 15, 2020 | Approved |
TweetDuck (Install) 1.18.4 | 23 | Saturday, August 8, 2020 | Approved |
TweetDuck (Install) 1.18.3 | 34 | Saturday, August 8, 2020 | Approved |
TweetDuck (Install) 1.18.2 | 16 | Thursday, July 23, 2020 | Approved |
TweetDuck (Install) 1.18.1 | 17 | Thursday, July 23, 2020 | Approved |
TweetDuck (Install) 1.18 | 25 | Wednesday, August 5, 2020 | Approved |
TweetDuck (Install) 1.17.4 | 30 | Wednesday, August 5, 2020 | Approved |
TweetDuck (Install) 1.17.3 | 31 | Tuesday, August 4, 2020 | Approved |
TweetDuck (Install) 1.17.2 | 32 | Tuesday, August 4, 2020 | Approved |
TweetDuck (Install) 1.17.1 | 26 | Tuesday, August 4, 2020 | Approved |
TweetDuck (Install) 1.17 | 24 | Wednesday, August 5, 2020 | Approved |
TweetDuck (Install) 1.16.3 | 29 | Monday, August 3, 2020 | Approved |
TweetDuck (Install) 1.16.2 | 26 | Monday, August 3, 2020 | Approved |
TweetDuck (Install) 1.16.1 | 23 | Monday, August 3, 2020 | Approved |
TweetDuck (Install) 1.16 | 23 | Monday, August 3, 2020 | Approved |
TweetDuck (Install) 1.15.2 | 39 | Sunday, August 2, 2020 | Approved |
TweetDuck (Install) 1.15.1 | 31 | Sunday, August 2, 2020 | Approved |
TweetDuck (Install) 1.15 | 24 | Sunday, August 2, 2020 | Approved |
TweetDuck (Install) 1.14.4.1 | 20 | Sunday, August 2, 2020 | Approved |
TweetDuck (Install) 1.14.4 | 24 | Sunday, August 2, 2020 | Approved |
TweetDuck (Install) 1.14.3 | 24 | Sunday, August 2, 2020 | Approved |
TweetDuck (Install) 1.14.2.1 | 18 | Saturday, August 1, 2020 | Approved |
TweetDuck (Install) 1.14.2 | 30 | Sunday, August 2, 2020 | Approved |
TweetDuck (Install) 1.14.1 | 20 | Saturday, August 1, 2020 | Approved |
TweetDuck (Install) 1.14 | 27 | Sunday, August 2, 2020 | Approved |
TweetDuck (Install) 1.13.6 | 24 | Saturday, August 1, 2020 | Approved |
TweetDuck (Install) 1.13.5 | 23 | Friday, July 31, 2020 | Approved |
TweetDuck (Install) 1.13.4.1 | 21 | Friday, July 31, 2020 | Approved |
TweetDuck (Install) 1.13.4 | 26 | Friday, July 31, 2020 | Approved |
TweetDuck (Install) 1.13.3 | 22 | Thursday, July 30, 2020 | Approved |
TweetDuck (Install) 1.13.2 | 23 | Thursday, July 30, 2020 | Approved |
TweetDuck (Install) 1.13.1 | 22 | Thursday, July 30, 2020 | Approved |
TweetDuck (Install) 1.13.0.1 | 20 | Thursday, July 30, 2020 | Approved |
TweetDuck (Install) 1.13 | 16 | Thursday, July 30, 2020 | Approved |
TweetDuck (Install) 1.12.5.1 | 20 | Thursday, July 30, 2020 | Approved |
TweetDuck (Install) 1.12.5 | 20 | Thursday, July 30, 2020 | Approved |
TweetDuck (Install) 1.12.4 | 24 | Thursday, July 30, 2020 | Approved |
TweetDuck (Install) 1.12.3.1 | 17 | Wednesday, July 29, 2020 | Approved |
TweetDuck (Install) 1.12.3 | 23 | Thursday, July 30, 2020 | Approved |
TweetDuck (Install) 1.12.2 | 18 | Wednesday, July 29, 2020 | Approved |
TweetDuck (Install) 1.12.1.1 | 21 | Wednesday, July 29, 2020 | Approved |
TweetDuck (Install) 1.12.1 | 18 | Wednesday, July 29, 2020 | Approved |
TweetDuck (Install) 1.12 | 18 | Thursday, July 30, 2020 | Approved |
TweetDuck (Install) 1.11.2 | 13 | Wednesday, July 29, 2020 | Approved |
TweetDuck (Install) 1.11.1 | 13 | Wednesday, July 29, 2020 | Approved |
TweetDuck (Install) 1.11 | 16 | Wednesday, July 29, 2020 | Approved |
TweetDuck (Install) 1.10.3 | 15 | Saturday, July 25, 2020 | Approved |
TweetDuck (Install) 1.10.2 | 13 | Saturday, July 25, 2020 | Approved |
TweetDuck (Install) 1.10.1 | 30 | Tuesday, June 16, 2020 | Approved |
TweetDuck (Install) 1.10 | 13 | Wednesday, July 29, 2020 | Approved |
TweetDuck (Install) 1.9.2 | 9 | Friday, August 28, 2020 | Approved |
TweetDuck (Install) 1.9.1 | 17 | Friday, August 28, 2020 | Approved |
TweetDuck (Install) 1.9 | 13 | Friday, August 28, 2020 | Approved |
TweetDuck (Install) 1.8.7 | 15 | Sunday, August 23, 2020 | Approved |
TweetDuck (Install) 1.8.6 | 17 | Sunday, August 23, 2020 | Approved |
TweetDuck (Install) 1.8.5.1 | 11 | Friday, August 21, 2020 | Approved |
TweetDuck (Install) 1.8.5 | 13 | Sunday, August 23, 2020 | Approved |
TweetDuck (Install) 1.8.4.1 | 19 | Friday, August 21, 2020 | Approved |
TweetDuck (Install) 1.8.4 | 18 | Friday, August 21, 2020 | Approved |
TweetDuck (Install) 1.8.3 | 12 | Wednesday, August 19, 2020 | Approved |
TweetDuck (Install) 1.8.2 | 19 | Wednesday, August 19, 2020 | Approved |
TweetDuck (Install) 1.8.1 | 10 | Wednesday, August 19, 2020 | Approved |
TweetDuck (Install) 1.8 | 11 | Sunday, August 23, 2020 | Approved |
TweetDuck (Install) 1.7.7 | 19 | Wednesday, August 19, 2020 | Approved |
TweetDuck (Install) 1.7.6 | 13 | Wednesday, August 19, 2020 | Approved |
TweetDuck (Install) 1.7.5 | 15 | Thursday, August 13, 2020 | Approved |
TweetDuck (Install) 1.7.4 | 16 | Thursday, August 13, 2020 | Approved |
TweetDuck (Install) 1.7.3 | 17 | Thursday, August 13, 2020 | Approved |
TweetDuck (Install) 1.7.2 | 30 | Thursday, August 13, 2020 | Approved |
TweetDuck (Install) 1.7.1 | 14 | Thursday, August 13, 2020 | Approved |
TweetDuck (Install) 1.7 | 14 | Wednesday, August 19, 2020 | Approved |
TweetDuck (Install) 1.6.7 | 13 | Thursday, August 13, 2020 | Approved |
TweetDuck (Install) 1.6.6 | 9 | Thursday, August 13, 2020 | Approved |
TweetDuck (Install) 1.6.5 | 15 | Thursday, August 13, 2020 | Approved |
TweetDuck (Install) 1.6.4 | 11 | Thursday, August 13, 2020 | Approved |
TweetDuck (Install) 1.6.3 | 15 | Wednesday, August 12, 2020 | Approved |
TweetDuck (Install) 1.6.2 | 14 | Wednesday, August 12, 2020 | Approved |
TweetDuck (Install) 1.6.1 | 11 | Wednesday, August 12, 2020 | Approved |
TweetDuck (Install) 1.6 | 15 | Thursday, August 13, 2020 | Approved |
TweetDuck (Install) 1.5.1 | 17 | Wednesday, August 12, 2020 | Approved |
TweetDuck (Install) 1.5 | 11 | Wednesday, August 12, 2020 | Approved |
TweetDuck (Install) 1.4.3 | 10 | Wednesday, August 12, 2020 | Approved |
TweetDuck (Install) 1.4.2 | 10 | Monday, August 10, 2020 | Approved |
TweetDuck (Install) 1.4.1 | 16 | Monday, August 10, 2020 | Approved |
TweetDuck (Install) 1.4 | 33 | Tuesday, June 16, 2020 | Approved |
TweetDuck (Install) 1.3.3 | 17 | Monday, August 10, 2020 | Approved |
TweetDuck (Install) 1.3.2 | 10 | Monday, August 10, 2020 | Approved |
TweetDuck (Install) 1.3.1 | 9 | Saturday, August 8, 2020 | Approved |
TweetDuck (Install) 1.3 | 27 | Tuesday, June 16, 2020 | Approved |
TweetDuck (Install) 1.2.3 | 23 | Saturday, July 25, 2020 | Approved |
TweetDuck (Install) 1.2.2 | 34 | Tuesday, June 16, 2020 | Approved |
TweetDuck (Install) 1.2.1 | 25 | Tuesday, June 16, 2020 | Approved |
TweetDuck (Install) 1.2 | 26 | Tuesday, June 16, 2020 | Approved |
TweetDuck (Install) 1.1.1 | 24 | Monday, June 15, 2020 | Approved |
TweetDuck (Install) 1.1 | 45 | Monday, June 15, 2020 | Approved |
TweetDuck (Install) 1.0 | 74 | Friday, May 29, 2020 | Approved |
Copyright © 2016 - 2020 chylex; Copyright © 2006 - 2020 Twitter, Inc
Important
When you open TweetDuck for the first time and log in, you will see an introduction screen
The introduction explains the most essential information about TweetDuck
It also includes a Send anonymous usage data checkbox; this is intended for the future, see the full explanation for details
TweetDuck now has a brand new guide that lists many useful features with visual explanations
New Features
You can now add emoji by writing :emoji_name:
This will try to find an emoji that best matches the keywords (emoji and name in the example), and either insert the match, or open the emoji keyboard where you can refine the search
After an emoji was automatically inserted, press
Backspace
orEscape
to revert itWhen the emoji search appears, press
Enter
to insert the first found emoji, orEscape
to close the searchNote that currently, this only works in the New Tweet panel
Bugfixes
Automatic restart to save memory now properly detects recent activity and modal dialogs
Fixed visual inconsistencies with quoted tweets and media in notifications & screenshots
Fixed screenshots of reply threads
Fixed a crash when clicking video overlay after a playback error
Fixed middle-clicking GIFs not opening them in a browser, and wrong cursor on GIFs in detail view
Fixed a hidden error when hovering tweets that have videos inside quoted tweets
-
- dotnet4.7.2 (≥ 4.7.2.20180712)
- chocolatey-core.extension (≥ 1.3.5.1)
- vcredist2015 (≥ 14.0.24215.20170201)
- vcredist140 (≥ 14.26.28720.3)
Ground Rules:
- This discussion is only about TweetDuck (Install) and the TweetDuck (Install) 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 TweetDuck (Install), 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.