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:

11,560

Downloads of v 1.6.1:

66

Last Update:

12 Aug 2020

Package Maintainer(s):

Software Author(s):

  • Daniel Chýlek

Tags:

twitter tweet tweetdeck management foss free open source desktop client electron

TweetDuck (Install)

This is not the latest version of TweetDuck (Install) available.

  • 1
  • 2
  • 3

1.6.1 | Updated: 12 Aug 2020

Downloads:

11,560

Downloads of v 1.6.1:

66

Maintainer(s):

Software Author(s):

  • Daniel Chýlek

TweetDuck (Install) 1.6.1

This is not the latest version of TweetDuck (Install) available.

  • 1
  • 2
  • 3

This Package Contains an Exempted Check

Not All Tests Have Passed


Validation Testing Passed


Verification Testing Exemption:

Indirect dependency on KB2919355 which requires reboot

Details

Scan Testing Successful:

No detections found in any package files

Details
Learn More

Deployment Method: Individual Install, Upgrade, & Uninstall

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:

>

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 tweetduck.install -y --source="'INTERNAL REPO URL'" --version="'1.6.1'" [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="'INTERNAL REPO URL'" --version="'1.6.1'" 
$exitCode = $LASTEXITCODE

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

Exit $exitCode

- name: Install tweetduck.install
  win_chocolatey:
    name: tweetduck.install
    version: '1.6.1'
    source: INTERNAL REPO URL
    state: present

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


chocolatey_package 'tweetduck.install' do
  action    :install
  source   'INTERNAL REPO URL'
  version  '1.6.1'
end

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


cChocoPackageInstaller tweetduck.install
{
    Name     = "tweetduck.install"
    Version  = "1.6.1"
    Source   = "INTERNAL REPO URL"
}

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


package { 'tweetduck.install':
  ensure   => '1.6.1',
  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.

NOTE

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.

Package Approved

This package was approved as a trusted package on 12 Aug 2020.

Description

TweetDuck is an open source Windows client for Twitter utilizing TweetDeck.


tools\chocolateybeforemodify.ps1
$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
}
tools\chocolateyinstall.ps1
$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.6.1/TweetDuck.exe"

  SoftwareName  = 'tweetduck*'

  Checksum      = "fc47bbc7b787d3779d23bebc3d7f0bc8c5c91ed1784648bb3ed5b380e9120724371ac145d8fd214f87f4851fa42523ae8699f77352d672f54cff25b44fee15a4"
  ChecksumType  = 'sha512'
  
  SilentArgs   = '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'
  ValidExitCodes= @(0)
}

Install-ChocolateyPackage @PackageArgs
$InstallLocation = Get-AppInstallLocation "$PackageName*"

Write-Host "$PackageName registered as $App"
tools\chocolateyuninstall.ps1
$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.

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
TweetDuck (Install) 1.25.4 119 Wednesday, July 19, 2023 Approved
TweetDuck (Install) 1.25.3 193 Saturday, March 11, 2023 Approved
TweetDuck (Install) 1.25.2 118 Monday, December 12, 2022 Approved
TweetDuck (Install) 1.25.1 54 Friday, December 9, 2022 Approved
TweetDuck (Install) 1.25 87 Monday, November 28, 2022 Approved
TweetDuck (Install) 1.24 129 Saturday, October 8, 2022 Approved
TweetDuck (Install) 1.23 129 Monday, August 22, 2022 Approved
TweetDuck (Install) 1.22.1 144 Monday, June 27, 2022 Approved
TweetDuck (Install) 1.22.0.1 201 Tuesday, March 8, 2022 Approved
TweetDuck (Install) 1.22 110 Tuesday, March 1, 2022 Approved
TweetDuck (Install) 1.21.2 163 Wednesday, January 26, 2022 Approved
TweetDuck (Install) 1.21.1 116 Wednesday, January 19, 2022 Approved
TweetDuck (Install) 1.21.0.1 121 Wednesday, January 5, 2022 Approved
TweetDuck (Install) 1.21 57 Wednesday, January 5, 2022 Approved
TweetDuck (Install) 1.20 412 Saturday, February 6, 2021 Approved
TweetDuck (Install) 1.19.0.2 309 Wednesday, July 29, 2020 Approved
TweetDuck (Install) 1.19.0.1 85 Thursday, July 23, 2020 Approved
TweetDuck (Install) 1.19 98 Wednesday, July 15, 2020 Approved
TweetDuck (Install) 1.18.6 110 Tuesday, June 16, 2020 Approved
TweetDuck (Install) 1.18.5 117 Monday, June 15, 2020 Approved
TweetDuck (Install) 1.18.4 106 Saturday, August 8, 2020 Approved
TweetDuck (Install) 1.18.3 114 Saturday, August 8, 2020 Approved
TweetDuck (Install) 1.18.2 101 Thursday, July 23, 2020 Approved
TweetDuck (Install) 1.18.1 88 Thursday, July 23, 2020 Approved
TweetDuck (Install) 1.18 100 Wednesday, August 5, 2020 Approved
TweetDuck (Install) 1.17.4 98 Wednesday, August 5, 2020 Approved
TweetDuck (Install) 1.17.3 106 Tuesday, August 4, 2020 Approved
TweetDuck (Install) 1.17.2 108 Tuesday, August 4, 2020 Approved
TweetDuck (Install) 1.17.1 102 Tuesday, August 4, 2020 Approved
TweetDuck (Install) 1.17 104 Wednesday, August 5, 2020 Approved
TweetDuck (Install) 1.16.3 98 Monday, August 3, 2020 Approved
TweetDuck (Install) 1.16.2 112 Monday, August 3, 2020 Approved
TweetDuck (Install) 1.16.1 99 Monday, August 3, 2020 Approved
TweetDuck (Install) 1.16 99 Monday, August 3, 2020 Approved
TweetDuck (Install) 1.15.2 117 Sunday, August 2, 2020 Approved
TweetDuck (Install) 1.15.1 116 Sunday, August 2, 2020 Approved
TweetDuck (Install) 1.15 97 Sunday, August 2, 2020 Approved
TweetDuck (Install) 1.14.4.1 86 Sunday, August 2, 2020 Approved
TweetDuck (Install) 1.14.4 104 Sunday, August 2, 2020 Approved
TweetDuck (Install) 1.14.3 97 Sunday, August 2, 2020 Approved
TweetDuck (Install) 1.14.2.1 99 Saturday, August 1, 2020 Approved
TweetDuck (Install) 1.14.2 110 Sunday, August 2, 2020 Approved
TweetDuck (Install) 1.14.1 98 Saturday, August 1, 2020 Approved
TweetDuck (Install) 1.14 100 Sunday, August 2, 2020 Approved
TweetDuck (Install) 1.13.6 105 Saturday, August 1, 2020 Approved
TweetDuck (Install) 1.13.5 100 Friday, July 31, 2020 Approved
TweetDuck (Install) 1.13.4.1 89 Friday, July 31, 2020 Approved
TweetDuck (Install) 1.13.4 113 Friday, July 31, 2020 Approved
TweetDuck (Install) 1.13.3 100 Thursday, July 30, 2020 Approved
TweetDuck (Install) 1.13.2 85 Thursday, July 30, 2020 Approved
TweetDuck (Install) 1.13.1 100 Thursday, July 30, 2020 Approved
TweetDuck (Install) 1.13.0.1 98 Thursday, July 30, 2020 Approved
TweetDuck (Install) 1.13 103 Thursday, July 30, 2020 Approved
TweetDuck (Install) 1.12.5.1 91 Thursday, July 30, 2020 Approved
TweetDuck (Install) 1.12.5 94 Thursday, July 30, 2020 Approved
TweetDuck (Install) 1.12.4 96 Thursday, July 30, 2020 Approved
TweetDuck (Install) 1.12.3.1 84 Wednesday, July 29, 2020 Approved
TweetDuck (Install) 1.12.3 93 Thursday, July 30, 2020 Approved
TweetDuck (Install) 1.12.2 92 Wednesday, July 29, 2020 Approved
TweetDuck (Install) 1.12.1.1 93 Wednesday, July 29, 2020 Approved
TweetDuck (Install) 1.12.1 91 Wednesday, July 29, 2020 Approved
TweetDuck (Install) 1.12 86 Thursday, July 30, 2020 Approved
TweetDuck (Install) 1.11.2 74 Wednesday, July 29, 2020 Approved
TweetDuck (Install) 1.11.1 76 Wednesday, July 29, 2020 Approved
TweetDuck (Install) 1.11 95 Wednesday, July 29, 2020 Approved
TweetDuck (Install) 1.10.3 98 Saturday, July 25, 2020 Approved
TweetDuck (Install) 1.10.2 92 Saturday, July 25, 2020 Approved
TweetDuck (Install) 1.10.1 99 Tuesday, June 16, 2020 Approved
TweetDuck (Install) 1.10 84 Wednesday, July 29, 2020 Approved
TweetDuck (Install) 1.9.2 73 Friday, August 28, 2020 Approved
TweetDuck (Install) 1.9.1 90 Friday, August 28, 2020 Approved
TweetDuck (Install) 1.9 92 Friday, August 28, 2020 Approved
TweetDuck (Install) 1.8.7 87 Sunday, August 23, 2020 Approved
TweetDuck (Install) 1.8.6 76 Sunday, August 23, 2020 Approved
TweetDuck (Install) 1.8.5.1 64 Friday, August 21, 2020 Approved
TweetDuck (Install) 1.8.5 79 Sunday, August 23, 2020 Approved
TweetDuck (Install) 1.8.4.1 68 Friday, August 21, 2020 Approved
TweetDuck (Install) 1.8.4 75 Friday, August 21, 2020 Approved
TweetDuck (Install) 1.8.3 79 Wednesday, August 19, 2020 Approved
TweetDuck (Install) 1.8.2 86 Wednesday, August 19, 2020 Approved
TweetDuck (Install) 1.8.1 62 Wednesday, August 19, 2020 Approved
TweetDuck (Install) 1.8 68 Sunday, August 23, 2020 Approved
TweetDuck (Install) 1.7.7 84 Wednesday, August 19, 2020 Approved
TweetDuck (Install) 1.7.6 65 Wednesday, August 19, 2020 Approved
TweetDuck (Install) 1.7.5 68 Thursday, August 13, 2020 Approved
TweetDuck (Install) 1.7.4 86 Thursday, August 13, 2020 Approved
TweetDuck (Install) 1.7.3 86 Thursday, August 13, 2020 Approved
TweetDuck (Install) 1.7.2 95 Thursday, August 13, 2020 Approved
TweetDuck (Install) 1.7.1 65 Thursday, August 13, 2020 Approved
TweetDuck (Install) 1.7 81 Wednesday, August 19, 2020 Approved
TweetDuck (Install) 1.6.7 63 Thursday, August 13, 2020 Approved
TweetDuck (Install) 1.6.6 64 Thursday, August 13, 2020 Approved
TweetDuck (Install) 1.6.5 75 Thursday, August 13, 2020 Approved
TweetDuck (Install) 1.6.4 70 Thursday, August 13, 2020 Approved
TweetDuck (Install) 1.6.3 71 Wednesday, August 12, 2020 Approved
TweetDuck (Install) 1.6.2 79 Wednesday, August 12, 2020 Approved
TweetDuck (Install) 1.6.1 66 Wednesday, August 12, 2020 Approved
TweetDuck (Install) 1.6 75 Thursday, August 13, 2020 Approved
TweetDuck (Install) 1.5.1 77 Wednesday, August 12, 2020 Approved
TweetDuck (Install) 1.5 82 Wednesday, August 12, 2020 Approved
TweetDuck (Install) 1.4.3 64 Wednesday, August 12, 2020 Approved
TweetDuck (Install) 1.4.2 83 Monday, August 10, 2020 Approved
TweetDuck (Install) 1.4.1 71 Monday, August 10, 2020 Approved
TweetDuck (Install) 1.4 112 Tuesday, June 16, 2020 Approved
TweetDuck (Install) 1.3.3 75 Monday, August 10, 2020 Approved
TweetDuck (Install) 1.3.2 75 Monday, August 10, 2020 Approved
TweetDuck (Install) 1.3.1 67 Saturday, August 8, 2020 Approved
TweetDuck (Install) 1.3 99 Tuesday, June 16, 2020 Approved
TweetDuck (Install) 1.2.3 104 Saturday, July 25, 2020 Approved
TweetDuck (Install) 1.2.2 106 Tuesday, June 16, 2020 Approved
TweetDuck (Install) 1.2.1 112 Tuesday, June 16, 2020 Approved
TweetDuck (Install) 1.2 110 Tuesday, June 16, 2020 Approved
TweetDuck (Install) 1.1.1 105 Monday, June 15, 2020 Approved
TweetDuck (Install) 1.1 122 Monday, June 15, 2020 Approved
TweetDuck (Install) 1.0 160 Friday, May 29, 2020 Approved

New Features

  • Added an option to toggle screenshot border, enabled by default

Enhancements

  • Removed legacy notification loading option, implemented a new system that is more responsive and reliable

Bugfixes

  • Fixed TweetDuck forgetting notification location after updating to version 1.6 (if you ran into this issue with Custom location, all you need to do is select it again, as the exact location was not lost)
  • Fixed a bug introduced in 1.5.1, where the update system may crash when trying to run the update installer
  • Copying text to clipboard no longer preserves custom HTML styles

Discussion for the TweetDuck (Install) Package

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.
comments powered by Disqus