
540,220
Downloads
7,610
Downloads of v 38.7.0
3/16/2016
Last update
Thunderbird is a free email application that’s easy to set up and customize – and it’s loaded with great features!
This package installs Thunderbird in the first language which matches this list:
- Install arguments override parameter if present, e.g.
choco install Thunderbird -packageParameters "l=en-GB"
. To get a list of all available locales have a look at this folder: http://releases.mozilla.org/pub/mozilla.org/thunderbird/releases/latest/win32/ - If Thunderbird is already installed: the same language as the already installed Thunderbird.
- The Windows system language where the Thunderbird package gets installed.
- If Thunderbird does not support the system language, it will fallback to “en-US”
To install Mozilla Thunderbird, run the following command from the command line or from PowerShell:
C:\> choco install thunderbird
--version 38.7.0
To upgrade Mozilla Thunderbird, run the following command from the command line or from PowerShell:
C:\> choco upgrade thunderbird
--version 38.7.0
Files
Hide- tools\chocolateyInstall.ps1
Show
# This is the general install script for Mozilla products (Firefox and Thunderbird). # This file must be identical for all Choco packages for Mozilla products in this repository. $packageName = 'thunderbird' $fileType = 'exe' $version = '38.7.0' $softwareNameLowerCase = $packageName.ToLower() $softwareNameTitleCase = $packageName.Substring(0, 1).ToUpper() + $packageName.Substring(1).ToLower() $allLocalesListURL = Switch ($softwareNameLowerCase) { 'firefox' { 'https://www.mozilla.org/en-US/firefox/all/' break } 'thunderbird' { 'https://www.mozilla.org/en-US/thunderbird/all.html' break } } # ---------------- Function definitions ------------------ function GetUninstallPath () { $regUninstallDir = 'HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\' $regUninstallDirWow64 = 'HKLM:\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\' $uninstallPaths = $(Get-ChildItem $regUninstallDir).Name if (Test-Path $regUninstallDirWow64) { $uninstallPaths += $(Get-ChildItem $regUninstallDirWow64).Name } $uninstallPath = $uninstallPaths -match "Mozilla $softwareNameTitleCase [\d\.]+ \([^\s]+ [a-zA-Z\-]+\)" | Select -First 1 return $uninstallPath } function GetLocale() { $availableLocales = (New-Object System.Net.WebClient).DownloadString($allLocalesListURL) # --- Get locale from installArgs if specified $packageParameters = $env:chocolateyPackageParameters $packageParameters = if ($packageParameters -ne $null) { $packageParameters } else { "" } $argumentMap = ConvertFrom-StringData $packageParameters $localeFromPackageParameters = $argumentMap.Item('l') # --- # --- Get already installed locale if available $uninstallPath = GetUninstallPath($null) $alreadyInstalledLocale = $uninstallPath -replace ".+\s([a-zA-Z\-]+)\)", '$1' # --- # --- Other locales $systemLocaleAndCountry = (Get-Culture).Name $systemLocaleTwoLetter = (Get-Culture).TwoLetterISOLanguageName $fallbackLocale = 'en-US' # --- $locales = $localeFromPackageParameters, $alreadyInstalledLocale, ` $systemLocaleAndCountry, $systemLocaleTwoLetter, $fallbackLocale foreach ($locale in $locales) { $localeMatch = $availableLocales -match "os=win&lang=$locale`"" | Select -First 1 if ($localeMatch -and $locale -ne $null) { break } } return $locale } function AlreadyInstalled($version) { $uninstallEntry = "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Mozilla $softwareNameTitleCase ${version}*" $uninstallEntryWow64 = "HKLM:\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\Mozilla $softwareNameTitleCase ${version}*" if ((Test-Path $uninstallEntry) -or (Test-Path $uninstallEntryWow64)) { return $true } else { return $false } } # ---------------------------------- $alreadyInstalled = AlreadyInstalled($version) if ($alreadyInstalled) { Write-Output $( "$softwareNameTitleCase $version is already installed. " 'No need to download an re-install again.' ) } else { $locale = GetLocale $url = "https://download.mozilla.org/?product=${softwareNameLowerCase}-${version}&os=win&lang=${locale}" $silentArgs = '-ms' Install-ChocolateyPackage $packageName $fileType $silentArgs $url }
Virus Scan Results
- thunderbird.38.7.0.nupkg (829a7bc833ce) - ## / 57 - Log in or click on link to see number of positives
- thunderbirdInstall.exe (f21d603e2351) - ## / 56 - Log in or click on link to see number of positives
Dependencies
This package has no dependencies.
Package Maintainer(s)
Software Author(s)
Copyright
Mozilla. All rights reserved.
Tags
Version History
Version | Downloads | Last updated | Status |
---|---|---|---|
Mozilla Thunderbird 60.5.1.20190217 | 335 | Sunday, February 17, 2019 | approved |
Mozilla Thunderbird 60.5.1 | 4392 | Thursday, February 14, 2019 | approved |
Mozilla Thunderbird 60.5.0 | 10401 | Wednesday, January 30, 2019 | approved |
Mozilla Thunderbird 60.4.0 | 15027 | Friday, December 21, 2018 | approved |
Mozilla Thunderbird 60.3.3 | 8868 | Tuesday, December 11, 2018 | approved |
Mozilla Thunderbird 60.3.2 | 9009 | Friday, November 30, 2018 | approved |
Mozilla Thunderbird 60.3.1 | 10812 | Thursday, November 15, 2018 | approved |
Mozilla Thunderbird 60.3.0 | 10322 | Thursday, November 1, 2018 | approved |
Mozilla Thunderbird 60.2.1 | 16647 | Wednesday, October 3, 2018 | approved |
Mozilla Thunderbird 60.0 | 24036 | Monday, August 6, 2018 | approved |
Discussion for the Mozilla Thunderbird Package
Ground rules:
- This discussion is only about Mozilla Thunderbird and the Mozilla Thunderbird 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 Mozilla Thunderbird, 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.