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...

Downloads:
4,625,885
Downloads of v 5.91:
136,220
Last Update:
29 Jun 2020
Package Maintainer(s):
Software Author(s):
- win.rar GmbH
Tags:
trial rar compression archive nagware admin- Software Specific:
- Software Site
- Software License
- Software Docs
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download

WinRAR
This is not the latest version of WinRAR available.
- Software Specific:
- Software Site
- Software License
- Software Docs
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Downloads:
4,625,885
Downloads of v 5.91:
136,220
Software Author(s):
- win.rar GmbH
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.
WinRAR 5.91
This is not the latest version of WinRAR available.
All Checks are Passing
2 Passing Test
To install WinRAR, run the following command from the command line or from PowerShell:
To upgrade WinRAR, run the following command from the command line or from PowerShell:
To uninstall WinRAR, 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://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 winrar --internalize --version=5.91 --source=https://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://chocolatey.org/api/v2)
4. Choose your deployment method:
choco upgrade winrar -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 winrar -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 winrar installed
win_chocolatey:
name: winrar
state: present
version: 5.91
source: STEP 3 URL
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
Coming early 2020! Central Managment Reporting available now! More information...
chocolatey_package 'winrar' do
action :install
version '5.91'
source 'STEP 3 URL'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
Chocolatey::Ensure-Package
(
Name: winrar,
Version: 5.91,
Source: STEP 3 URL
);
Requires Otter Chocolatey Extension. See docs at https://inedo.com/den/otter/chocolatey.
cChocoPackageInstaller winrar
{
Name = 'winrar'
Ensure = 'Present'
Version = '5.91'
Source = 'STEP 3 URL'
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'winrar':
provider => 'chocolatey',
ensure => '5.91',
source => 'STEP 3 URL',
}
Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.
salt '*' chocolatey.install winrar version="5.91" 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 29 Jun 2020.
NOTE When a new version is released, not all translations are avaialbe. Currently there is no solution to permanently fix this. For more information have a look at issue #20
WinRAR
WinRAR is a powerful archive manager. It can backup your data and reduce the size of email attachments, decompress RAR, ZIP and other files downloaded from Internet and create new archives in RAR and ZIP file format.
You can find themes for WinRAR here.
Commercial software
You can try WinRAR before you buy.
Package Parameters
The following package parameters can be set:
/LCID:
- the language code you want to install - defaults to your current language/English:
- force English language to install
To pass parameters, use --params "''"
(e.g. choco install packageID [other options] --params="'/ITEM:value /ITEM2:value2 /FLAG_BOOLEAN'"
).
To have choco remember parameters on upgrade, be sure to set choco feature enable -n=useRememberedArgumentsForUpgrades
.
Please Note: This is an automatically updated package. If you find it is
out of date by more than a day or two, please contact the maintainer(s) and
let them know the package is no longer updating correctly.
$ErrorActionPreference = 'Stop';
$toolsDir = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"
$toolsPath = Split-Path $MyInvocation.MyCommand.Definition
. $toolsPath\helpers.ps1
$LCID = (Get-UICulture).LCID
$url_version = '591'
$checksumType32 = 'sha256'
$checksumType64 = 'sha256'
$pp = Get-PackageParameters
if ($pp.LCID) {
Write-Debug "Override local language settings."
$LCID = $pp.LCID
}
if ($pp.English) {
Write-Debug "Force install English version"
$LCID = $null
}
#LCID table: https://msdn.microsoft.com/goglobal/bb964664.aspx
##Arabic - Saudi Arabia 1025
##Arabic - Algeria 5121
##Arabic - Bahrain 15361
##Arabic - Egypt 3073
##Arabic - Iraq 2049
##Arabic - Jordan 11265
##Arabic - Kuwait 13313
##Arabic - Lebanon 12289
##Arabic - Libya 4097
##Arabic - Morocco 6145
##Arabic - Oman 8193
##Arabic - Qatar 16385
##Arabic - Syria 10241
##Arabic - Tunisia 7169
##Arabic - U.A.E. 14337
##Arabic - Yemen 9217
if(($LCID -eq "1025") -or ($LCID -eq "5121") -or ($LCID -eq "15361") -or ($LCID -eq "3073") -or ($LCID -eq "2049") -or ($LCID -eq "11265") -or ($LCID -eq "13313") -or ($LCID -eq "12289") -or ($LCID -eq "4097") -or ($LCID -eq "6145") -or ($LCID -eq "8193") -or ($LCID -eq "16385") -or ($LCID -eq "10241") -or ($LCID -eq "7169") -or ($LCID -eq "14337") -or ($LCID -eq "9271")){
$code = "ar"
}
##Armenian 1067
elseif($LCID -eq "1067"){
$code = 'am'
}
##AAzeri (Cyrillic) 2092
##AAzeri (Latin) 1068
elseif(($LCID -eq "2092") -or ($LCID -eq "1068")){
$code = 'az'
}
##Belarusian 1059
elseif($LCID -eq "1059"){
$code = 'by'
}
##Bulgarian 1026
elseif($LCID -eq "1026"){
$code = 'bg'
}
##Catalan 1027
elseif($LCID -eq "1027"){
$code = 'by'
}
##Chinese - People's Republic of China 2052
##Chinese - Singapore 4100
##Chinese - Hong Kong SAR 3076
##Chinese - Macao SAR 5124
elseif(($LCID -eq "2052") -or ($LCID -eq "4100") -or ($LCID -eq "3076") -or ($LCID -eq "5124")){
$code = 'sc'
}
##Chinese - Taiwan 1028
elseif($LCID -eq "1028"){
$code = 'tc'
}
##Croatian 1050
##Croatian (Bosnia/Herzegovina) 4122
elseif(($LCID -eq "1050") -or ($LCID -eq "4122")){
$code = 'cro'
}
##Czech 1029
elseif($LCID -eq "1029"){
$code = 'cz'
}
##Danish 1030
elseif($LCID -eq "1030"){
$code = 'dk'
}
##Dutch - Netherlands 1043
##Dutch - Belgium 2067
elseif(($LCID -eq "1043") -or ($LCID -eq "2067")){
$code = 'nl'
}
##Estonian 1061
elseif($LCID -eq "1061"){
$code = 'est'
}
##Finnish 1035
elseif($LCID -eq "1035"){
$code = 'fi'
}
##French 1036
elseif($LCID -eq "1036"){
$code = 'fr'
}
##Galician 1110
elseif($LCID -eq "1110"){
$code = 'gl'
}
##Georgian 1079
elseif($LCID -eq "1079"){
$code = 'ge'
}
##German 1031
elseif($LCID -eq "1031"){
$code = 'd'
}
##Greek 1032
elseif($LCID -eq "1032"){
$code = 'el'
}
##Hebrew 1037
elseif($LCID -eq "1037"){
$code = 'he'
}
##Hungarian 1038
elseif($LCID -eq "1038"){
$code = 'hu'
}
##Indonesian 1057
elseif($LCID -eq "1057"){
$code = 'id'
}
##Italian - Italy 1040
##Italian - Switzerland 2064
elseif(($LCID -eq "1040") -or ($LCID -eq "2064")){
$code = 'it'
}
##Japanese 1041
elseif($LCID -eq "1041"){
$code = 'jp'
}
##Korean 1042
elseif($LCID -eq "1042"){
$code = 'kr'
}
##Lithuanian 1063
elseif($LCID -eq "1063"){
$code = 'lt'
}
##Macedonian 0047
##Macedonian (Former Yugoslav Republic of Macedonia) 1071
elseif(($LCID -eq "0047") -or ($LCID -eq "1071")){
$code = 'mk'
}
##Norwegian (Bokmål) 1044
##Norwegian (Nynorsk) 2068
elseif(($LCID -eq "1044") -or ($LCID -eq "2068")){
$code = 'no'
}
##Persian 0041
##Persian Iran 1065
elseif(($LCID -eq "0041") -or ($LCID -eq "1065")){
$code = 'prs'
}
##Polish 1045
elseif($LCID -eq "1045"){
$code = 'pl'
}
##Portuguese - Portugal
##Portuguese - Portugal 2070 (pt-pt)
elseif($LCID -eq "2070"){
$code = 'pt'
}
##Portuguese - Brazil
##Portuguese - Brazil 1046 (pt-br)
elseif($LCID -eq "1046"){
$code = 'br'
}
##Romanian 1048
##Romanian Moldava 2072
elseif(($LCID -eq "1048") -or ($LCID -eq "2072")){
$code = 'ro'
}
##Russian (ru-ru) 1049
##Russian-Moldava (ru-mo) 2073
elseif(($LCID -eq "1049") -or ($LCID -eq "2073")){
$code = 'ru'
}
##Serbian Cyrillic 3098
elseif($LCID -eq "3098"){
$code = 'srbcyr'
}
##Serbian Latin 2074
elseif($LCID -eq "2074"){
$code = 'srblat'
}
##Sinhala 1115
elseif($LCID -eq "1115"){
$code = 'si'
}
##Slovak 1051
elseif($LCID -eq "1051"){
$code = 'sk'
}
##Slovenian 1060
elseif($LCID -eq "1060"){
$code = 'slv'
}
##Spanish - Spain (Modern Sort) 3082
##Spanish - Spain (Traditional Sort) 1034 (es-es)
##Spanish - Argentina 11274
##Spanish - Bolivia 16394
##Spanish - Chile 13322
##Spanish - Colombia 9226
##Spanish - Costa Rica 5130
##Spanish - Dominican Republic 7178
##Spanish - Ecuador 12298
##Spanish - El Salvador 17418
##Spanish - Guatemala 4106
##Spanish - Honduras 18442
##Spanish - Latin America 22538
##Spanish - Mexico 2058
##Spanish - Nicaragua 19466
##Spanish - Panama 6154
##Spanish - Paraguay 15370
##Spanish - Peru 10250
##Spanish - Puerto Rico 20490
##Spanish - United States 21514
##Spanish - Uruguay 14346
##Spanish - Venezuela 8202
elseif(($LCID -eq "3082") -or ($LCID -eq "1034") -or ($LCID -eq "11274") -or ($LCID -eq "16394") -or ($LCID -eq "13322") -or ($LCID -eq "9226") -or ($LCID -eq "5130") -or ($LCID -eq "7178") -or ($LCID -eq "12298") -or ($LCID -eq "17418") -or ($LCID -eq "4106") -or ($LCID -eq "18442") -or ($LCID -eq "22538") -or ($LCID -eq "2058") -or ($LCID -eq "19466") -or ($LCID -eq "6154") -or ($LCID -eq "15370") -or ($LCID -eq "10250") -or ($LCID -eq "20490") -or ($LCID -eq "21514") -or ($LCID -eq "14346") -or ($LCID -eq "8202")){
$code = 'es'
}
##Swedish 1053
##Swedish - Finland 2077
elseif(($LCID -eq "1053") -or ($LCID -eq "2077")){
$code = 'sw'
}
##Thai 1054
elseif($LCID -eq "1054"){
$code = 'th'
}
##Turkish 1055
elseif($LCID -eq "1055"){
$code = 'tr'
}
##Turkmen 1090
elseif($LCID -eq "1090"){
$code = 'tkm'
}
##Ukrainian 1058
elseif($LCID -eq "1058"){
$code = 'ukr'
}
##Uzbek (Cyrillic) 2115
##Uzbek (Latin) 1091
elseif(($LCID -eq "2115") -or ($LCID -eq "1091")){
$code = 'uz'
}
#Valencian
#Valencian 2051
elseif($LCID -eq "2051"){
$code = 'va'
}
##Vietnamese 1066
elseif($LCID -eq "1066"){
$code = 'vn'
}
##English --- all
else{
$code = 'en'
}
$downloadInfo = GetDownloadInfo -downloadInfoFile "$toolsPath\downloadInfo.csv" -code $code -urlVersion $url_version
$packageArgs = @{
packageName = $env:ChocolateyPackageName
unzipLocation = $toolsDir
fileType = 'exe'
url = $downloadInfo.URL32
checksum = $downloadInfo.Checksum32
checksumType = $checksumType32
url64bit = $downloadInfo.URL64
checksum64 = $downloadInfo.Checksum64
checksumType64= $checksumType64
softwareName = 'WinRAR*'
silentArgs = '/S'
validExitCodes= @(0)
}
Install-ChocolateyPackage @packageArgs
$packageName = $env:ChocolateyPackageName
$packageSearch = "WinRAR*"
$installerType = 'exe'
$silentArgs = '/S'
$validExitCodes = @(0)
Get-ItemProperty -Path @('HKLM:\Software\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\*',
'HKLM:\Software\Microsoft\Windows\CurrentVersion\Uninstall\*',
'HKCU:\Software\Microsoft\Windows\CurrentVersion\Uninstall\*') `
-ErrorAction:SilentlyContinue `
| Where-Object {$_.DisplayName -like $packageSearch} `
| ForEach-Object {Uninstall-ChocolateyPackage -PackageName "$packageName" `
-FileType "$installerType" `
-SilentArgs "$($silentArgs)" `
-File "$($_.UninstallString.Replace('"',''))" `
-ValidExitCodes $validExitCodes}
en|https://www.rarlab.com/rar/winrar-x64-591.exe|1c30d74f20ea721d63061d2a06ac00a9270fc7823004ff4f572d354990d4c1ae|https://www.rarlab.com/rar/wrar591.exe|f9b848bed0a8ca2bfbc4faf5350a30e6f9ce5fed373381ce88f11c65dc08491d
ar|https://www.rarlab.com/rar/winrar-x64-591ar.exe|32b6d9e14099994b65efb1b2cc9360b394dfbada13155e01e4e7556ab0bc6621|https://www.rarlab.com/rar/wrar591ar.exe|d27445d50a86af84a5dabe1f8cf9074dd4c0cc5a729964889a6cf49e5cfe6132
am|https://www.rarlab.com/rar/winrar-x64-591am.exe|d2a5ee3b687616b410bf7803b0d2e14a275d2dd85db7270ce39718dc607ad34c|https://www.rarlab.com/rar/wrar591am.exe|16f97d80cabc656641b243a088abf957fa5040f5e49d03c2f8377a251251974e
cro|https://www.rarlab.com/rar/winrar-x64-591cro.exe|112a444fb2f5d41b3796bb756175ee61ee553907e692c3672e7c28882d48a6fc|https://www.rarlab.com/rar/wrar591cro.exe|cc317e5f2c795e46c0e8d85fcea840c46a3b21d2d6703a4e90388aa12f7122d0
dk|https://www.rarlab.com/rar/winrar-x64-591dk.exe|1c1dafcb5aafc7d1afffc4d40c73a84c84ea7997f87a8dd55395b0bdabc62d07|https://www.rarlab.com/rar/wrar591dk.exe|fbd64faa7202a97941c434729936221d2fffc2325bfee299f110d1601a9b9ae9
en|https://www.rarlab.com/rar/winrar-x64-591.exe|1c30d74f20ea721d63061d2a06ac00a9270fc7823004ff4f572d354990d4c1ae|https://www.rarlab.com/rar/wrar591.exe|f9b848bed0a8ca2bfbc4faf5350a30e6f9ce5fed373381ce88f11c65dc08491d
fi|https://www.rarlab.com/rar/winrar-x64-591fi.exe|c38cbb6cc34d7c46062c9f422fb31357908226cf55db8c1b6ab1a903af00684a|https://www.rarlab.com/rar/wrar591fi.exe|446ae7d0426f8157617bcee2c921d1440e235968aacc1721257db0ec7b2450fd
el|https://www.rarlab.com/rar/winrar-x64-591el.exe|d4dbd1eec51257570a8de224c3e0017eccbd67e05c5050602570b8a107ace4f3|https://www.rarlab.com/rar/wrar591el.exe|81487b2f7a9dff70c02e94178fc1a790f10238fa0b9da88e14c26c6d4529721e
id|https://www.rarlab.com/rar/winrar-x64-591id.exe|5623ef9e9abd30d19492d4bd47568cd8aa786014bde5e22abbab7443488a2e44|https://www.rarlab.com/rar/wrar591id.exe|c2216baf1bd1442e30257d62d17f461b4f0c2ba058b4c89dbe453f5da36411fc
kr|https://www.rarlab.com/rar/winrar-x64-591kr.exe|d9751d0ebdd3931aaf1f1eef13d0b1c56ed15845bd3307e0f4b9540e8c999f1d|https://www.rarlab.com/rar/wrar591kr.exe|4da6cb538f80d8eaba559aff90cd150656acffa14f91acedb229b91acabfae43
lt|https://www.rarlab.com/rar/winrar-x64-591lt.exe|7c0b89e0910254753d3988366901445377748d72f3f0a30d4f25414e0b6e0bf1|https://www.rarlab.com/rar/wrar591lt.exe|81134b393ce32ebd6dfd85a19650448dbb81266e24cd4c86e42dea0dcf56ded8
mn|https://www.rarlab.com/rar/winrar-x64-591mn.exe|42fee1d27245199a2693088f2f4eb83174343a21d85eb0218eb1922551e3ef85|https://www.rarlab.com/rar/wrar591mn.exe|c8adf1b93bf354b2d39ad0d81af5a5f8cf8c96dd0f2437c15e028a79e5130fc3
prs|https://www.rarlab.com/rar/winrar-x64-591prs.exe|3486a2caef841c8870a8e68879d7b125a6eeba294726232cab414c375eed9346|https://www.rarlab.com/rar/wrar591prs.exe|4d90a727903a4809a77458a6fe64f9803877f14d33ea1577fec5574726a15703
pt|https://www.rarlab.com/rar/winrar-x64-591pt.exe|88daf650a132c31c5d946635e7b13945b98d6ba188f25c4d7bbdf885c6f53be9|https://www.rarlab.com/rar/wrar591pt.exe|53669d9f3d8dbaffff89dee22c835f4ac02922b3e5183e9d916d75676fdef4a3
esco|https://www.rarlab.com/rar/winrar-x64-591esco.exe|5c93d9dfdf86396fb909f392c12d984f0dd1e7cd8818584e25fbdcbb47c8d94a|https://www.rarlab.com/rar/wrar591esco.exe|65852022a67d998961b277a00547a63d8a13c94093e7984592d8b0386efbf71f
sw|https://www.rarlab.com/rar/winrar-x64-591sw.exe|c00d49e618502137b8127b0f62b8241e1b189ebf90a2711eb3b7e058891e7a1a|https://www.rarlab.com/rar/wrar591sw.exe|08d8da1bffafca2eb0f56a98a1f5349147ace0960b361cc14874474a6e876ed1
tr|https://www.rarlab.com/rar/winrar-x64-591tr.exe|c81954ae11e2398df54dcc6dc64a71f2ce8afc3a4039d4a98812cf624cc203fd|https://www.rarlab.com/rar/wrar591tr.exe|7ff3db2eb478ba4c4a69a49cdcb15c2839ec4b2c5bfadd39272891e1715149ad
function GetDownloadInfo {
param(
[string]$downloadInfoFile,
[string]$code,
[string]$urlVersion
)
Write-Debug "Reading CSV file from $downloadInfoFile"
$downloadInfo = Get-Content -Encoding UTF8 -Path $downloadInfoFile | ConvertFrom-Csv -Delimiter '|' -Header 'Code','URL64','Checksum64','URL32','Checksum32'
$result = $downloadInfo | Where-Object { $_.Code -eq $code } | Select-Object -first 1
if (!$result) {
$result = $downloadInfo | Where-Object { $_.Code -eq 'en' } | Select-Object -first 1
$result.URL64 = $result.URL64 -replace $urlVersion, "${urlVersion}${code}"
$result.URL32 = $result.URL32 -replace $urlVersion, "${urlVersion}${code}"
$result.Checksum32 = ''
$result.Checksum64 = ''
}
$result
}
Log in or click on link to see number of positives.
- winrar.5.91.nupkg (f7e005bf0c24) - ## / 63
- winrar-x64-591.exe (1c30d74f20ea) - ## / 72
- wrar591.exe (f9b848bed0a8) - ## / 71
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 |
---|---|---|---|
WinRAR 6.0.0.20210102 | 60296 | Saturday, January 2, 2021 | Approved |
WinRAR 6.00 | 75435 | Monday, December 7, 2020 | Approved |
WinRAR 5.91.0.20200917 | 146974 | Thursday, September 17, 2020 | Approved |
WinRAR 5.91 | 136220 | Monday, June 29, 2020 | Approved |
WinRAR 5.90.0.20200528 | 51084 | Thursday, May 28, 2020 | Approved |
WinRAR 5.90.0.20200401 | 91536 | Wednesday, April 1, 2020 | Approved |
WinRAR 5.90 | 23329 | Monday, March 30, 2020 | Approved |
WinRAR 5.80.0.20200219 | 77435 | Wednesday, February 19, 2020 | Approved |
WinRAR 5.80.0.20200102 | 124740 | Thursday, January 2, 2020 | Approved |
WinRAR 5.80 | 52632 | Wednesday, December 11, 2019 | Approved |
WinRAR 5.71 | 293604 | Wednesday, May 8, 2019 | Approved |
WinRAR 5.70.0.20190305 | 54973 | Tuesday, March 5, 2019 | Approved |
WinRAR 5.70 | 35798 | Wednesday, February 27, 2019 | Approved |
win.rar GmbH
This package has no dependencies.
Ground Rules:
- This discussion is only about WinRAR and the WinRAR 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 WinRAR, 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.