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,177,717

Downloads of v 5.71:

294,816

Last Update:

08 May 2019

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

5.71 | Updated: 08 May 2019

Downloads:

7,177,717

Downloads of v 5.71:

294,816

Maintainer(s):

Software Author(s):

  • win.rar GmbH

WinRAR 5.71

This is not the latest version of WinRAR available.

  • 1
  • 2
  • 3

Some Checks Have Failed or Are Not Yet Complete

Not All Tests Have Passed


Validation Testing Passed


Verification Testing Passed

Details

Scan Testing Resulted in Flagged:

This package was submitted (and approved) prior to automated virus scanning integration into the package moderation processs.

We recommend clicking the "Details" link to make your own decision on installing this package.

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="'5.71'" [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="'5.71'" 
$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: '5.71'
    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  '5.71'
end

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


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

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


package { 'winrar':
  ensure   => '5.71',
  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 by moderator gep13 on 08 May 2019.

Description

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 = '571'

$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-571.exe|fd820bf82edbaa4be20fd3b644a05754d95d71de60fe79ab983c3318e0697540|https://www.rarlab.com/rar/wrar571.exe|df5432792436545c8255f98cbf659ceca63e13d29c1cc74944ab70e34feb96fa
bg|https://www.rarlab.com/rar/winrar-x64-571bg.exe|a82c987aa7a09feef1fba7599875237a923aed3954eaf17ce0a2067697cf89e5|https://www.rarlab.com/rar/wrar571bg.exe|da47e8dfdac1336594f20a0cc705f2c425dd495f7ac3f5107fdfc7b0333891ad
ca|https://www.rarlab.com/rar/winrar-x64-571ca.exe|f265cf17b806d452067a3b3755e5e14bd10037e8827da6eb731047c62be6b8d3|https://www.rarlab.com/rar/wrar571ca.exe|26305b69aaf5007dafebb8d9d4c6923e9e6834c3b62030428f52c7d11cc4f177
tc|https://www.rarlab.com/rar/winrar-x64-571tc.exe|51ec661887fe73cc72370ac8aecce895ca2715adee4b1df578374cfb0038e181|https://www.rarlab.com/rar/wrar571tc.exe|fd12ef9abde8960c28f4bccf58efe5f3c528e8e59c13239df899be6f93e725ad
cro|https://www.rarlab.com/rar/winrar-x64-571cro.exe|5d710edf061a4e5651daeff5c16980c536338f2b932538a35b3dc0ed9c4dde13|https://www.rarlab.com/rar/wrar571cro.exe|a4823788174d86680301ef285a04b4a7738531d751ce7738371e03c9d66e6e5f
cz|https://www.rarlab.com/rar/winrar-x64-571cz.exe|f4005565818f1fbfd8dfdc16f40b2abb25bc8d42d7147b9a5d04ea649220245a|https://www.rarlab.com/rar/wrar571cz.exe|fca66635823ff82766efb581062562c80af00d43dd74fed5c3bac8dcab125ce6
dk|https://www.rarlab.com/rar/winrar-x64-571dk.exe|327df5e49bb08f03403b9a573df2ccc4abbcc9a8cf7b8d07fc1f8ca878f34f5a|https://www.rarlab.com/rar/wrar571dk.exe|0988ba5fb34692214835c73f09d6cebb47d229adb8337cba76b3c0df754c3199
nl|https://www.rarlab.com/rar/winrar-x64-571nl.exe|579f47428ab661b801cf1ef34e3b5d243b568da488931620b99f6a18ca36c852|https://www.rarlab.com/rar/wrar571nl.exe|5f08ecc755a53230141c1acb07835be46c63ce6471b89a8440dc7d3c1f43b1f5
en|https://www.rarlab.com/rar/winrar-x64-571.exe|fd820bf82edbaa4be20fd3b644a05754d95d71de60fe79ab983c3318e0697540|https://www.rarlab.com/rar/wrar571.exe|df5432792436545c8255f98cbf659ceca63e13d29c1cc74944ab70e34feb96fa
eu|https://www.rarlab.com/rar/winrar-x64-571eu.exe|13cc24c0a00d44d991f700568e2c940ade43610372cf1051e5e91091440623e4|https://www.rarlab.com/rar/wrar571eu.exe|559b56fe2dd15088e695633c6d52b25fd92ff7e40687bd173746a16ef2d2ecdc
fi|https://www.rarlab.com/rar/winrar-x64-571fi.exe|62ca89c2b1488c6c560343d76c3606e9b4532d1e11646479b818f46f647e2d0c|https://www.rarlab.com/rar/wrar571fi.exe|87f55d473913bb3cfa4b1742787ed2a35059da2453b0ec3882031f4b87ec90fa
fr|https://www.rarlab.com/rar/winrar-x64-571fr.exe|dea96a40c2679de3fe2ff33db7d26ba936fdb65d3087fa76e4867de4a36c7eeb|https://www.rarlab.com/rar/wrar571fr.exe|5584478c93d6aba1b2f600e0e411b14dbdd4c44619ef81fcbb40e98dd9075c7c
gl|https://www.rarlab.com/rar/winrar-x64-571gl.exe|43588f8bee920707ce6ded41c142c285eb22ac91ec026324a404215101056f43|https://www.rarlab.com/rar/wrar571gl.exe|91b0027516c2df5871dda52336f1648d734ecfc0699844a037124fb47208534d
d|https://www.rarlab.com/rar/winrar-x64-571d.exe|bd26cdcc9d3042b9b13cbb733365bd261b256e395e2341c0db5bd40422913f00|https://www.rarlab.com/rar/wrar571d.exe|b3206a1f27f847595451451dfe026f3e21f8c6eb79321fd0c33db7d331be73bc
el|https://www.rarlab.com/rar/winrar-x64-571el.exe|7cc88b40517fe53caf53930446a32b0cf6fb3e3b80b14779c21090ea8ad6dd88|https://www.rarlab.com/rar/wrar571el.exe|503db6f74385af4a21370c5f9f54cf8000a6541578b4e26de5ffb44bea74cacc
he|https://www.rarlab.com/rar/winrar-x64-571he.exe|80072d46351d1e5a4c717f2bc0abc60ce1294727c983d32c57cb78c4510f3669|https://www.rarlab.com/rar/wrar571he.exe|54cef1b4011b470eccbc9d59aa630f9c5feaa41a90d5ceb90b378af36dd6645e
hu|https://www.rarlab.com/rar/winrar-x64-571hu.exe|6e40062791a8abae153584bad0644004e35bacec60b498307d41adbf2a2b0d84|https://www.rarlab.com/rar/wrar571hu.exe|1faa24fb2695ead95e25bfd77a520482ea6a848b7f9d47b5d54f08f39afb9ae0
id|https://www.rarlab.com/rar/winrar-x64-571id.exe|6bc61c066da33408245e505f3b469c070558826a9f9c4fb0a5c2f34827e5ec69|https://www.rarlab.com/rar/wrar571id.exe|a95f5d277bc3d5e6c7545762ca16dfcede05aab15a1ab1dbba5259e6975a1c12
jp|https://www.rarlab.com/rar/winrar-x64-571jp.exe|082d0eedd989c0e467f2a0d980157be9ce460876d35be5917a56d3552207e880|https://www.rarlab.com/rar/wrar571jp.exe|87869bade810914be05a6bb11420aa441bab42896051e6a16cc191c3be6f3d57
mn|https://www.rarlab.com/rar/winrar-x64-571mn.exe|d9796b394bd87630375531dfebc55fca70addef0d7f6c721e1943b3efc5a1542|https://www.rarlab.com/rar/wrar571mn.exe|debf3d3d14259cd0e77013645610fe91988f5cf41dd11c324c8b93324ca0638d
pl|https://www.rarlab.com/rar/winrar-x64-571pl.exe|e46c2f4d015b9a4f06e6ddf045d3ed32a250c9e8648b3bc5d6dde263afb43ffe|https://www.rarlab.com/rar/wrar571pl.exe|e6698febebd4a9fd202d29377a5ee6bc2facaf83fa485d6ebef8f560564add9b
pt|https://www.rarlab.com/rar/winrar-x64-571pt.exe|80b37e6949f51335aa5ab6c3b6b9d4c18d14752c240471cc454c0456f0e6eec6|https://www.rarlab.com/rar/wrar571pt.exe|207f64c31ccec872221f39e10d1af9f616b7cd29e118002ce0b9d32f506e91f9
br|https://www.rarlab.com/rar/winrar-x64-571br.exe|615807a442de0f9f2027bca0ec66ec7dbd6be18203ad04eaeeabd8c0e22838f9|https://www.rarlab.com/rar/wrar571br.exe|5d652a2b183ec395a9bbd95aeb946695a0e0a3375548b0966109faabf1e38deb
ro|https://www.rarlab.com/rar/winrar-x64-571ro.exe|56b26039e636ab38c5571eab4cc04151836d93292d226665445771387b3951ae|https://www.rarlab.com/rar/wrar571ro.exe|3ff71f0492bc82fa34469f8abdc87293cc7e35a6a031b98fa77d2df3c2277266
ru|https://www.rarlab.com/rar/winrar-x64-571ru.exe|4e4ab3280151a914d270f986fbf6cf6f89af7ca51d328e4630b4205d23c08f88|https://www.rarlab.com/rar/wrar571ru.exe|9cdd43c1774e78e43598717c8cc40c506d5156d39662a7bf1473b1d63f0d38c0
srbcyr|https://www.rarlab.com/rar/winrar-x64-571srbcyr.exe|faea61831dfaa012d9401d9b1d4e0683467ea35c1374170a0a09bb511ab0935b|https://www.rarlab.com/rar/wrar571srbcyr.exe|fbce51f6e6fc0c05d9f6def1d2c0ad89bc3329b9fbdfd67bb018b4f42f7b942b
sk|https://www.rarlab.com/rar/winrar-x64-571sk.exe|b5b1c67bd8b3b26532dbfc926ab80c5f07f25874f9fe466e6c85e6e52fb55219|https://www.rarlab.com/rar/wrar571sk.exe|dff47f82929f429f0f29dfe4d4f95cc86ef7e158e88bcb37d4181d4b22b8bf77
slv|https://www.rarlab.com/rar/winrar-x64-571slv.exe|497491fd943ebb8a63350872ab3e05fb52ac4fee27a8a9e48c6b1bcb5fdb607c|https://www.rarlab.com/rar/wrar571slv.exe|89c58c67d7fe9aadd33ba8a948d76eca299f01002cc7bffd66f6ccdcf0b99b99
es|https://www.rarlab.com/rar/winrar-x64-571es.exe|64ffea4e8b2a94570631966184e0b96cb118a8318b8a213da63004aaa1800fa3|https://www.rarlab.com/rar/wrar571es.exe|f446b454d5339072b7fc6048e2ba461fd3b1a6a62ee5f3eb50d8a581edfcb0f1
sw|https://www.rarlab.com/rar/winrar-x64-571sw.exe|8c7c537335e4455ca08534113f4e267f107e25b82b11a20f7541757015ff4385|https://www.rarlab.com/rar/wrar571sw.exe|ccaaead4c8e42ef95cad8ccc4cadfd27d2d0f88cc6ed298f5a56df813d83226b
th|https://www.rarlab.com/rar/winrar-x64-571th.exe|fa3a5ac4f7e67c7b8a4ea8cc1e6aa37843f8cc7ac545d19a2d84887ab1c5490b|https://www.rarlab.com/rar/wrar571th.exe|27f6c27b8470c0599f20a8db987a8698acb26fe89e52c5f319c926e80ea1d589
tr|https://www.rarlab.com/rar/winrar-x64-571tr.exe|c0af87df324065475fb1e2ddd7f0480add623da62b0579455f7f2728d34fc36c|https://www.rarlab.com/rar/wrar571tr.exe|789889936891e44b0a5b2261400fe840bab5e47c3bec23b0f671603e5a030001
uk|https://www.rarlab.com/rar/winrar-x64-571uk.exe|a84d1f04ca5b741af740852734282b8beeed3084e046e9f70754e816730704c3|https://www.rarlab.com/rar/wrar571uk.exe|a8e4d74d4a5c0b31f7b5403042cbc4c0183798ca36002cd4e2cf010f26d9f54b
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'
  $downloadInfo | Where-Object { $_.Code -eq $code } | Select-Object -first 1
}

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 246991 Thursday, October 5, 2023 Approved
WinRAR 6.23 193889 Wednesday, August 2, 2023 Approved
WinRAR 6.22 135180 Thursday, June 8, 2023 Approved
WinRAR 6.21 213924 Monday, February 20, 2023 Approved
WinRAR 6.20 157239 Monday, January 23, 2023 Approved
WinRAR 6.11.0.20220504 343297 Wednesday, May 4, 2022 Approved
WinRAR 6.11 141662 Friday, March 4, 2022 Approved
WinRAR 6.10.0.20220128 99393 Friday, January 28, 2022 Approved
WinRAR 6.10 30237 Tuesday, January 25, 2022 Approved
WinRAR 6.02 362247 Monday, June 14, 2021 Approved
WinRAR 6.01 166760 Monday, April 12, 2021 Approved
WinRAR 6.0.0.20210102 259968 Saturday, January 2, 2021 Approved
WinRAR 6.00 75949 Monday, December 7, 2020 Approved
WinRAR 5.91.0.20200917 147339 Thursday, September 17, 2020 Approved
WinRAR 5.91 137093 Monday, June 29, 2020 Approved
WinRAR 5.90.0.20200528 51286 Thursday, May 28, 2020 Approved
WinRAR 5.90.0.20200401 91896 Wednesday, April 1, 2020 Approved
WinRAR 5.90 23526 Monday, March 30, 2020 Approved
WinRAR 5.80.0.20200219 77779 Wednesday, February 19, 2020 Approved
WinRAR 5.80.0.20200102 124938 Thursday, January 2, 2020 Approved
WinRAR 5.80 52802 Wednesday, December 11, 2019 Approved
WinRAR 5.71 294816 Wednesday, May 8, 2019 Approved
WinRAR 5.70.0.20190305 56400 Tuesday, March 5, 2019 Approved
WinRAR 5.70 36027 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