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:

7,232,902

Downloads of v 6.22:

135,248

Last Update:

08 Jun 2023

Package Maintainer(s):

Software Author(s):

  • win.rar GmbH

Tags:

trial rar compression archive nagware admin

WinRAR

This is not the latest version of WinRAR available.

  • 1
  • 2
  • 3

6.22 | Updated: 08 Jun 2023

Downloads:

7,232,902

Downloads of v 6.22:

135,248

Maintainer(s):

Software Author(s):

  • win.rar GmbH

WinRAR 6.22

This is not the latest version of WinRAR available.

  • 1
  • 2
  • 3

All Checks are Passing

3 Passing Tests


Validation Testing Passed


Verification Testing Passed

Details

Scan Testing Successful:

No detections found in any package files

Details
Learn More

Deployment Method: Individual Install, Upgrade, & Uninstall

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:

>

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 winrar -y --source="'INTERNAL REPO URL'" --version="'6.22'" [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="'INTERNAL REPO URL'" --version="'6.22'" 
$exitCode = $LASTEXITCODE

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

Exit $exitCode

- name: Install winrar
  win_chocolatey:
    name: winrar
    version: '6.22'
    source: INTERNAL REPO URL
    state: present

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


chocolatey_package 'winrar' do
  action    :install
  source   'INTERNAL REPO URL'
  version  '6.22'
end

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


cChocoPackageInstaller winrar
{
    Name     = "winrar"
    Version  = "6.22"
    Source   = "INTERNAL REPO URL"
}

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


package { 'winrar':
  ensure   => '6.22',
  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

Private CDN cached downloads available for licensed customers. Never experience 404 breakages again! Learn more...

Package Approved

This package was approved as a trusted package on 09 Jun 2023.

Description

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.


tools\chocolateyInstall.ps1
$ErrorActionPreference = 'Stop';
$toolsDir       = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"

$toolsPath = Split-Path $MyInvocation.MyCommand.Definition
. $toolsPath\helpers.ps1

$LCID = (Get-UICulture).LCID
$url_version = '622'

$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
tools\chocolateyUninstall.ps1
$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}
tools\downloadInfo.csv
en|https://www.rarlab.com/rar/winrar-x64-622.exe|bc6440121c023a5068c558bee72eae5c2b2eea1580c95ef7fba354780c689f7f|https://www.rarlab.com/rar/winrar-x32-622.exe|f5aec798235bf06e445d6d75b3a8825768f3abd3a89a82095cbe5933afdb2b68
ar|https://www.rarlab.com/rar/winrar-x64-622ar.exe|10063b4c46eb2c8fff4820811b34217866fee7ae7a05ca49434fec7f34f5d8ea|https://www.rarlab.com/rar/winrar-x32-622ar.exe|0a8ad370d314ae1ed59d9329c900673fc8a286cb71f49d498bdf24eae286fde9
am|https://www.rarlab.com/rar/winrar-x64-622am.exe|cd0f4255424088c0909f0ed88266635f91c1ef09fee5b910eba2e473518e2f46|https://www.rarlab.com/rar/winrar-x32-622am.exe|19e9d22ec621cb05470c3cb573ab860858d7a07769c8b2337853ff63ece55917
bg|https://www.rarlab.com/rar/winrar-x64-622bg.exe|c648af555865bc4ac4cdacdd1d8f45bbb6a2dd58a04882894c205447abd17d94|https://www.rarlab.com/rar/winrar-x32-622bg.exe|4c01050628ac6098d9cdfcca343efce563b573cc0aab07d1a255429550800217
ca|https://www.rarlab.com/rar/winrar-x64-622ca.exe|f272d42676af42fffd65e4ac11f38aa6480100ea3c1b7846b97a95189c1d0a94|https://www.rarlab.com/rar/winrar-x32-622ca.exe|1ee2d617c0da3e3bd13f83b764405c8106b5327bc93ce75ca98836270cffa0ae
sc|https://www.rarlab.com/rar/winrar-x64-622sc.exe|e8fd630094db2fe72bc1a9725a1336a9b4988301b46bc4c9893c8c8fbc0b8038|https://www.rarlab.com/rar/winrar-x32-622sc.exe|b4bcfc99e851c6517d7e81ac2066854145d843fc591ee8a8e744f92337b372b0
tc|https://www.rarlab.com/rar/winrar-x64-622tc.exe|2a3e8e1627737b944380ed1c5f0371ef95cbf906e36cb3f0215fe95a7884125b|https://www.rarlab.com/rar/winrar-x32-622tc.exe|0443a206343a30a9a23b1ed8a2f83ba7767a97a9fb80342fdbc1a09ea69f9f86
cro|https://www.rarlab.com/rar/winrar-x64-622cro.exe|6ec5256964fe0a2b94c473012dd151bfebd03de96abeaeecf70f558d4ff68a95|https://www.rarlab.com/rar/winrar-x32-622cro.exe|cfb3c825e6e49f7bae6fa1c49cd6da3669b7127c87d500b1fa83cd6c51ed2649
cz|https://www.rarlab.com/rar/winrar-x64-622cz.exe|171e26997f601519418b8e8fd7a0b443e09176f9311b906530d182b771d567a8|https://www.rarlab.com/rar/winrar-x32-622cz.exe|399c6352ed00598709a4d1efafad9b404ab845e6578689108397bb52789cde4e
dk|https://www.rarlab.com/rar/winrar-x64-622dk.exe|9ddab6ec2515a397302e2ce2fd8c0c8b2f1de769cc102113e4f57284d1b82999|https://www.rarlab.com/rar/winrar-x32-622dk.exe|05e394b46f762d6429f2a5a9d465f292764a2da9a03ab6261276723f9d9d21ab
nl|https://www.rarlab.com/rar/winrar-x64-622nl.exe|720ee6c99b9d0a281c8d3609ba8d3233a3203439955538200178c6dcac7f1579|https://www.rarlab.com/rar/winrar-x32-622nl.exe|8c28e811874891abe9d59b7e7302c427c45f6e87abf9b69e7e1db597ab9b7233
en|https://www.rarlab.com/rar/winrar-x64-622.exe|bc6440121c023a5068c558bee72eae5c2b2eea1580c95ef7fba354780c689f7f|https://www.rarlab.com/rar/winrar-x32-622.exe|f5aec798235bf06e445d6d75b3a8825768f3abd3a89a82095cbe5933afdb2b68
eu|https://www.rarlab.com/rar/winrar-x64-622eu.exe|b5776e3c64f6f2016949d1fd0d050599d5f32988c84f35358dd923eb10475911|https://www.rarlab.com/rar/winrar-x32-622eu.exe|b9710c5a99b8cbadf690fd91e9b7c41892146c76e080792db2d28455c33f6b3f
fi|https://www.rarlab.com/rar/winrar-x64-622fi.exe|c69573bf30849f20c0846bc599ee2a08f72495335d66e9755fda03c23ece77e8|https://www.rarlab.com/rar/winrar-x32-622fi.exe|4e83597c8a4a03837e296c2ab3191de72935ab0457e102aa94f8abcb203ca30b
fr|https://www.rarlab.com/rar/winrar-x64-622fr.exe|199bd2b8f3bf8a3337aeec3aeab0e874f4eae8a876539373300312033e3c7981|https://www.rarlab.com/rar/winrar-x32-622fr.exe|44ff2f9ce1a407e7616fdb71b1e827f55547d3b3adfeddc84032f748767d8173
gl|https://www.rarlab.com/rar/winrar-x64-622gl.exe|10b210c46518a51012d0e092e588554c0bc75898c5b5a1222ef2f46d34798a2d|https://www.rarlab.com/rar/winrar-x32-622gl.exe|66239527f655f104f90885657367b0f0fd3161e0cafc1ba724ff3e5fd5560d43
d|https://www.rarlab.com/rar/winrar-x64-622d.exe|cbf707dfa3c59d98385e900afb6abd67328088004c0d5a9a5bd6763711861aaa|https://www.rarlab.com/rar/winrar-x32-622d.exe|8b5f5ca66cb086e2add4397aea3f9c38b3fe6cdead4f9e214cc234843fd09eaa
el|https://www.rarlab.com/rar/winrar-x64-622el.exe|322015e37ee9856b46fffd6d04b74a5aeb2eac24221173445f5d6aa6e87cf9d6|https://www.rarlab.com/rar/winrar-x32-622el.exe|2888e38083dcc9a45b8a20196eebf3c7eb5f83fe3c055ea16af8b36d6b23ef5f
he|https://www.rarlab.com/rar/winrar-x64-622he.exe|3591e118b8c7d5ddfe911d5e60ed0bd6c48164e3abacfb92d8b36432c19aef5f|https://www.rarlab.com/rar/winrar-x32-622he.exe|d2df60a5f6983043b0ec068c50731344a6eb6a4769205a0cee988a8fa48cf5f9
hu|https://www.rarlab.com/rar/winrar-x64-622hu.exe|a0c5ee90ea897f85f68b2a00e5a2704ffcf5534ce72e24ed6df4e12788de0708|https://www.rarlab.com/rar/winrar-x32-622hu.exe|3f7e097c1fddca8c7e67c9dfd36c414871e83179dfb9c233f991fda30896f8b9
id|https://www.rarlab.com/rar/winrar-x64-622id.exe|7a6ff99248b912de27c8fa8d00addb794f3971e2529435686ddba7b7991ced6b|https://www.rarlab.com/rar/winrar-x32-622id.exe|b80eb0769e84b4b81d8d77503771d997740e0cca0a79e196afd01f9fb45c188f
it|https://www.rarlab.com/rar/winrar-x64-622it.exe|477e619a2ad54d732d0d9ca732e0a159514f3f232390472d893ad87854af52d9|https://www.rarlab.com/rar/winrar-x32-622it.exe|fb23513b59e7515a84a98bf4207643c19112f760663f31e9a1eec4fc5668b100
jp|https://www.rarlab.com/rar/winrar-x64-622jp.exe|1abe6a41a41a2d7af855cfacf4b2fca8e2c767cb2ed7c90e5a40f3963f77a755|https://www.rarlab.com/rar/winrar-x32-622jp.exe|4abbfb03b4a029c2c49022c333d9ecaae1af2052bef29bfd37010ffd9921750c
kr|https://www.rarlab.com/rar/winrar-x64-622kr.exe|84ada15ee35ceafd0e75d6d737fb5759b53417ad80277088fb0cc0c459cf267f|https://www.rarlab.com/rar/winrar-x32-622kr.exe|c74078e6ac06500a39a02728e5bdfd8102d36bc972f84f80207ed69192e54dde
lt|https://www.rarlab.com/rar/winrar-x64-622lt.exe|861819b27783464b9553e411154f2ccf46b24db316b92802a61b99eeeec45b91|https://www.rarlab.com/rar/winrar-x32-622lt.exe|ef023cd695f78ea2fa96e717eabd9a3b7d3c0f6ffc86f295cff8329319539c33
mn|https://www.rarlab.com/rar/winrar-x64-622mn.exe|b4de2688119e9e02fa49dcabdaa6d5be7c47ca8169aed6c3f1ff71a9454e2a26|https://www.rarlab.com/rar/winrar-x32-622mn.exe|8608a3c899b252aa51bd3c04f7efa28f1925b15002d5a7cf67f0972f49dafcb5
no|https://www.rarlab.com/rar/winrar-x64-622no.exe|c18b663b3f3c2b3028241354dc8afb80333301f9518de2c74e1bd2baa850ff05|https://www.rarlab.com/rar/winrar-x32-622no.exe|e86311cb23582b8f8d06c33a5fd19dd135cbdb89d52ca508cf5a24f0e29af80c
pl|https://www.rarlab.com/rar/winrar-x64-622pl.exe|aff0143b56fab392e14a4e7cf0309fd342e8c92adfeaf7f63138ac23cd402ccb|https://www.rarlab.com/rar/winrar-x32-622pl.exe|e5ad777c18442e1c7355f86b3134b67c3e4de0e761dae24aace62195b5605723
pt|https://www.rarlab.com/rar/winrar-x64-622pt.exe|06ad73f74cf30dcf63ce96d1b488dc80dac20f4630dcab65a08004c77340bb7a|https://www.rarlab.com/rar/winrar-x32-622pt.exe|7f0e99d08a50f392bbb65e88a4d01b2c08c46a65bd52ce0081b1b4f27e3307fd
br|https://www.rarlab.com/rar/winrar-x64-622br.exe|6209eb6b223ab886050b5fd7a5d483ed1ca667c936b23b9d932330bd54e51db1|https://www.rarlab.com/rar/winrar-x32-622br.exe|3505ad28099f1208dbe81b06fb06305a649d433689838c4a0f78301188f77e82
ru|https://www.rarlab.com/rar/winrar-x64-622ru.exe|899547d7b89e4f64c593d8cb1f8ac5f65009da8f13ee9766a4a0ffb8f1b6b0e3|https://www.rarlab.com/rar/winrar-x32-622ru.exe|14caa4c5192dcb5d5bdfd72132e9753ee8b7c6f67e65baafa9409bd3c7d69d90
srbcyr|https://www.rarlab.com/rar/winrar-x64-622srbcyr.exe|aa430e65e5338b735396cf3b407c1a88a35d73e998a88de1a9515605403b4fba|https://www.rarlab.com/rar/winrar-x32-622srbcyr.exe|fcd0b7c4bec51fda6a38ec268f563463448d955447e1a9209465193acd6adebb
es|https://www.rarlab.com/rar/winrar-x64-622es.exe|d24b9b18ba2797bc21e82f5e17d1c18b8f8d1f415084f4c1eb3a8eb48c938b73|https://www.rarlab.com/rar/winrar-x32-622es.exe|dc597dcb049824c84e8cca573d5df61d65b6a57004833978e7f0fd5a1c50bdbf
sw|https://www.rarlab.com/rar/winrar-x64-622sw.exe|1cb2e29e89ef5bb546812fec91e1cfa08c6682160e83a4f113eeb20cdc2ffbeb|https://www.rarlab.com/rar/winrar-x32-622sw.exe|eaf2fc39631d07d41eea0816385323e9dd38ebd6ee56582fafd5a7f0bc4e4bac
th|https://www.rarlab.com/rar/winrar-x64-622th.exe|a95555a50b3f6f32a81d1c4e22a0b878245ca414908c5211350dc80b5f65590d|https://www.rarlab.com/rar/winrar-x32-622th.exe|61c2a563511efa9432eae0f1035063dbac8b6e2396080efb7fe087dc0c26e2f4
tr|https://www.rarlab.com/rar/winrar-x64-622tr.exe|7a53c4cae2d5d16841d2e92db335c83e9e89b240a2d1cfb1a40f65807927aafd|https://www.rarlab.com/rar/winrar-x32-622tr.exe|a7bfaa2a0cd97325655748ccfe8c0ef822104fd2b9319a994611769897197376
uk|https://www.rarlab.com/rar/winrar-x64-622uk.exe|3f52ce3843350338e21f440c9811ea04c4142a47ecfb187bc9642d15ad9177a4|https://www.rarlab.com/rar/winrar-x32-622uk.exe|fec533836fdcfe9733f88ae0ba7dea8646f63ea89bda85ababdac9f1e7fe145c
vn|https://www.rarlab.com/rar/winrar-x64-622vn.exe|8b73bc7d9f8449377715df28b32c3b8e059f0f1602dade45a2397bc612f4ce09|https://www.rarlab.com/rar/winrar-x32-622vn.exe|b39ff67d4ecbfbd8c6da01845893fc25434df3263258667659ed6f67b2501fd2
tools\helpers.ps1
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.

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
WinRAR 6.24 247404 Thursday, October 5, 2023 Approved
WinRAR 6.23 193954 Wednesday, August 2, 2023 Approved
WinRAR 6.22 135248 Thursday, June 8, 2023 Approved
WinRAR 6.21 213955 Monday, February 20, 2023 Approved
WinRAR 6.20 157287 Monday, January 23, 2023 Approved
WinRAR 6.11.0.20220504 343322 Wednesday, May 4, 2022 Approved
WinRAR 6.11 141675 Friday, March 4, 2022 Approved
WinRAR 6.10.0.20220128 99400 Friday, January 28, 2022 Approved
WinRAR 6.10 30243 Tuesday, January 25, 2022 Approved
WinRAR 6.02 362267 Monday, June 14, 2021 Approved
WinRAR 6.01 166768 Monday, April 12, 2021 Approved
WinRAR 6.0.0.20210102 259975 Saturday, January 2, 2021 Approved
WinRAR 6.00 75969 Monday, December 7, 2020 Approved
WinRAR 5.91.0.20200917 147348 Thursday, September 17, 2020 Approved
WinRAR 5.91 137104 Monday, June 29, 2020 Approved
WinRAR 5.90.0.20200528 51295 Thursday, May 28, 2020 Approved
WinRAR 5.90.0.20200401 91899 Wednesday, April 1, 2020 Approved
WinRAR 5.90 23533 Monday, March 30, 2020 Approved
WinRAR 5.80.0.20200219 77786 Wednesday, February 19, 2020 Approved
WinRAR 5.80.0.20200102 124942 Thursday, January 2, 2020 Approved
WinRAR 5.80 52811 Wednesday, December 11, 2019 Approved
WinRAR 5.71 294827 Wednesday, May 8, 2019 Approved
WinRAR 5.70.0.20190305 56479 Tuesday, March 5, 2019 Approved
WinRAR 5.70 36034 Wednesday, February 27, 2019 Approved

This package has no dependencies.

Discussion for the WinRAR Package

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