Downloads:
7,674,836
Downloads of v 5.90.0.20200401:
91,935
Last Update:
01 Apr 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.
- 1
- 2
- 3
5.90.0.20200401 | Updated: 01 Apr 2020
- 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:
7,674,836
Downloads of v 5.90.0.20200401:
91,935
Maintainer(s):
Software Author(s):
- win.rar GmbH
WinRAR 5.90.0.20200401
This is not the latest version of WinRAR available.
Legal Disclaimer: Neither this package nor Chocolatey Software, Inc. are affiliated with or endorsed by win.rar GmbH. The inclusion of win.rar GmbH trademark(s), if any, upon this webpage is solely to identify win.rar GmbH goods or services and not for commercial purposes.
- 1
- 2
- 3
Some Checks Have Failed or Are Not Yet Complete
Not All Tests Have Passed
Validation Testing Passed
Verification Testing Passed
DetailsScan 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.
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:
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
Option 1: Cached Package (Unreliable, Requires Internet - Same As Community)-
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
-
Open Source
-
Download the package:
Download - Follow manual internalization instructions
-
-
Package Internalizer (C4B)
-
Run: (additional options)
choco download winrar --internalize --version=5.90.0.20200401 --source=https://community.chocolatey.org/api/v2/
-
For package and dependencies run:
choco push --source="'INTERNAL REPO URL'"
- Automate package internalization
-
Run: (additional options)
3. Copy Your Script
choco upgrade winrar -y --source="'INTERNAL REPO URL'" --version="'5.90.0.20200401'" [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.90.0.20200401'"
$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.90.0.20200401'
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.90.0.20200401'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
cChocoPackageInstaller winrar
{
Name = "winrar"
Version = "5.90.0.20200401"
Source = "INTERNAL REPO URL"
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'winrar':
ensure => '5.90.0.20200401',
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.
Private CDN cached downloads available for licensed customers. Never experience 404 breakages again! Learn more...
This package was approved by moderator Pauby on 01 Apr 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.
$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-590.exe|f541c80ac787a26931b7b1eba1fefcda56a3a05ca44c1e961efe4a5a480175bf|https://www.rarlab.com/rar/wrar590.exe|4ede5d50ee254e6d2bd5a5832d55ca38cd46e85379a31cde5d717165ce0c70a5
ar|https://www.rarlab.com/rar/winrar-x64-590ar.exe|75b1e69e0a82ecccdcd9ebafe362b6f9eac10504c9f8d768b15b93db40256af7|https://www.rarlab.com/rar/wrar590ar.exe|4f50c2657228f879817dd135ad94f3a2eb3e005768b1daf70b4d2a5fae7711e3
ca|https://www.rarlab.com/rar/winrar-x64-590ca.exe|41c129f2356b608a18d83c04e6c7182ceab96c92110b06bf96e4ec4adf2f5494|https://www.rarlab.com/rar/wrar590ca.exe|c21d6521849aee39d4f44debb017f3fcbc47395b1b8004f50f5ad97fc1c10dda
tc|https://www.rarlab.com/rar/winrar-x64-590tc.exe|f1b131516c3e41a056970f90f5676b6007af71735e5b273b48f3deb04ffbd994|https://www.rarlab.com/rar/wrar590tc.exe|1f38a9db8c6fdc14f6c868c8e63dba0d35d407c4bd121ad327940c42e645bdfa
dk|https://www.rarlab.com/rar/winrar-x64-590dk.exe|8b190a2305ffa75e7cf66b62ad9070e81481cf85aa32b7942a7a435f8fc48de7|https://www.rarlab.com/rar/wrar590dk.exe|15d805de32dfee308a7a0d5b68d27ca1c9bdee5298540a0813d77c181f8c4c40
nl|https://www.rarlab.com/rar/winrar-x64-590nl.exe|6fc4b0a4f89c7e5554ae39d7e8df861fa263024f8b960587e1d42bc33f314b06|https://www.rarlab.com/rar/wrar590nl.exe|f0bb38951dc6974a49819e0f661fc0668d90cfa0633aaf401e1eac03a43b44ad
en|https://www.rarlab.com/rar/winrar-x64-590.exe|f541c80ac787a26931b7b1eba1fefcda56a3a05ca44c1e961efe4a5a480175bf|https://www.rarlab.com/rar/wrar590.exe|4ede5d50ee254e6d2bd5a5832d55ca38cd46e85379a31cde5d717165ce0c70a5
eu|https://www.rarlab.com/rar/winrar-x64-590eu.exe|0465f47defa7d60198d45e4010f1dbe3ba6425973ccd0933767d1a5274007f15|https://www.rarlab.com/rar/wrar590eu.exe|d6bdb9f4dbbfd2d825d16806174e0c20d42715ebf9d98225fbab97dc7136ff0d
fr|https://www.rarlab.com/rar/winrar-x64-590fr.exe|0b45ce6e431c56a4e1348e09b32ce357105b49a25eded225c8337839e10ecc1b|https://www.rarlab.com/rar/wrar590fr.exe|b5033b187f944127d2380699cded853a068ba5b43624bde216e54ca1dfb402e5
gl|https://www.rarlab.com/rar/winrar-x64-590gl.exe|b1df5f5417ec0025aa7482a862cb63250f023d390a5ca8733cb4dc9df6940d7f|https://www.rarlab.com/rar/wrar590gl.exe|3dcd0197c3d90aedaea28b6bbb5313a558f79a36e65bdcb7c3af8508a37ab25c
d|https://www.rarlab.com/rar/winrar-x64-590d.exe|af3b1dde12fd6c63335b78c05729da4403b43ad92400d4c2aa72f45e14b595c7|https://www.rarlab.com/rar/wrar590d.exe|4ab5247c323be87a86f725a5ad23b24251bfa87102e50a2e2ff11fdfae44d5a4
he|https://www.rarlab.com/rar/winrar-x64-590he.exe|4fa7f4e5e17fffca41e610c38dc08de50ed368212cf21e4a73fcb1f0fb7acd83|https://www.rarlab.com/rar/wrar590he.exe|12a2e0d0ed40860afa0868d79d3cd32d7ab2b3538d5860322723f3ce2e2cbaf9
hu|https://www.rarlab.com/rar/winrar-x64-590hu.exe|ba0bc3a72501e1a45b970bc7dda516058f32815fe9eaa59f3a79e0a72777b8fd|https://www.rarlab.com/rar/wrar590hu.exe|1f4f83775c35abab49406b48b3722eee7b0a6a87cf4c5422aa19998bd0cc58fb
id|https://www.rarlab.com/rar/winrar-x64-590id.exe|bc989d30481e17c29d0bbd6af4bdf08c28dcda82488c8157637ee8ee469bd137|https://www.rarlab.com/rar/wrar590id.exe|a59bab10cd074c66479cfd6767ec0070944cc30a1e1f3b35d7e8725debd6467f
kr|https://www.rarlab.com/rar/winrar-x64-590kr.exe|3b0e3c268ce91a45520103ecf57ffb3e8eb224d59323de393b48a97434734a1a|https://www.rarlab.com/rar/wrar590kr.exe|33e5dacb42e6ff18b0b36fedad55787774f48e1f02abf14fc9ec52e8b4243a0d
lt|https://www.rarlab.com/rar/winrar-x64-590lt.exe|ae4368442964e73733467d95b79cfdb804c71a47023480ff07230b0f25e7230e|https://www.rarlab.com/rar/wrar590lt.exe|08c8a81537936fdb9de05e510a56f123d508ae7d64b3603541f77b885cee4c2e
prs|https://www.rarlab.com/rar/winrar-x64-590prs.exe|f05e441d227560206c068a012d6516931fc51f3d0e2fa22449fe8f609780f2b1|https://www.rarlab.com/rar/wrar590prs.exe|0b836acdd6edfcac15b41bf88473d6ace9d91407063e7e57daac308ba96e0b5f
pl|https://www.rarlab.com/rar/winrar-x64-590pl.exe|d0e0232e7f06bec272880e22bd8416ff9512117ce865d6a7924a4ad01225f643|https://www.rarlab.com/rar/wrar590pl.exe|cb3fb42b87996182cf9a5f4538b4194c2f315ad14cd653b00bfc24a69f9dc00a
pt|https://www.rarlab.com/rar/winrar-x64-590pt.exe|37546b65e4be05ad5f232fa6aba0912f6bac1d620506d3cc1ff8e2d8978798a7|https://www.rarlab.com/rar/wrar590pt.exe|198e19bea9881ee8e4f3d7a619015395ac50d3734be4cf6ed6ce55d9952a0af5
br|https://www.rarlab.com/rar/winrar-x64-590br.exe|45aa48488af559d5a3447f95803673be4431c9741885beeeba766193f98f0b4d|https://www.rarlab.com/rar/wrar590br.exe|98f88a7af382151d1990930299f91190a19fd61b8375299b25559e2a6559eab7
ru|https://www.rarlab.com/rar/winrar-x64-590ru.exe|26e23b55452f560bb1fedc4f36e68c33f2aa1d6dd30f9eadf74aa2564cd1e676|https://www.rarlab.com/rar/wrar590ru.exe|7859bbadb069f79e50e0f328a9b5aaca8cd01614b228b500c489f3791253b6db
srbcyr|https://www.rarlab.com/rar/winrar-x64-590srbcyr.exe|844989247e9169077c85e6e56555ab34e24923972d2b44f3a725f7d609c4c5d9|https://www.rarlab.com/rar/wrar590srbcyr.exe|2b0442f013b702aaa08e1485d25f39a2c14a7c76c8811e1c8f280064bbe67661
es|https://www.rarlab.com/rar/winrar-x64-590es.exe|37a4fb181ec8b24338ea7fccc403218c2ce4aacf1012457797cb7317743b9710|https://www.rarlab.com/rar/wrar590es.exe|a25a7ae683ff603c2c796bb8baf642077e2e1b2ca303a3d330e3391e273e8b8d
sw|https://www.rarlab.com/rar/winrar-x64-590sw.exe|573530caf8976d72949b52090bbab3ab2a164467305bcef2968822a78f9be08b|https://www.rarlab.com/rar/wrar590sw.exe|6884f106819371feb440089cfd6e0c830ede172cb57d9929f7f7ac759c44c2cd
tr|https://www.rarlab.com/rar/winrar-x64-590tr.exe|469463e2cb275e740efb44105a1d40cba7d31af326bddefaf0c4db77eb300865|https://www.rarlab.com/rar/wrar590tr.exe|bb9c44870886e8545cffbdab68de5cd4cd437fab426a9c7b240012dbee6f854f
uk|https://www.rarlab.com/rar/winrar-x64-590uk.exe|af5306261c9bcf0c2a7f6f772fce598b9bad6df8acae939cd2da3bb608b960b1|https://www.rarlab.com/rar/wrar590uk.exe|07d6793dfb3e34d331e388b58b924f655ccee93148191ff696109b31fb3ff925
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-x64-590.exe (f541c80ac787) - ## / 72
- wrar590.exe (4ede5d50ee25) - ## / 72
- winrar.5.90.0.20200401.nupkg (9b9e6b0899ee) - ## / 62
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 7.1.0 | 404026 | Wednesday, May 15, 2024 | Approved | |
WinRAR 7.0.0 | 210712 | Thursday, February 29, 2024 | Approved | |
WinRAR 6.24 | 249224 | Thursday, October 5, 2023 | Approved | |
WinRAR 6.23 | 194163 | Wednesday, August 2, 2023 | Approved | |
WinRAR 6.22 | 135998 | Thursday, June 8, 2023 | Approved | |
WinRAR 6.21 | 214114 | Monday, February 20, 2023 | Approved | |
WinRAR 6.20 | 157421 | Monday, January 23, 2023 | Approved | |
WinRAR 6.11.0.20220504 | 343512 | Wednesday, May 4, 2022 | Approved | |
WinRAR 6.11 | 141783 | Friday, March 4, 2022 | Approved | |
WinRAR 6.10.0.20220128 | 99477 | Friday, January 28, 2022 | Approved | |
WinRAR 6.10 | 30287 | Tuesday, January 25, 2022 | Approved | |
WinRAR 6.02 | 362351 | Monday, June 14, 2021 | Approved | |
WinRAR 6.01 | 166812 | Monday, April 12, 2021 | Approved | |
WinRAR 6.0.0.20210102 | 260074 | Saturday, January 2, 2021 | Approved | |
WinRAR 6.00 | 76089 | Monday, December 7, 2020 | Approved | |
WinRAR 5.91.0.20200917 | 147417 | Thursday, September 17, 2020 | Approved | |
WinRAR 5.91 | 137171 | Monday, June 29, 2020 | Approved | |
WinRAR 5.90.0.20200528 | 51339 | Thursday, May 28, 2020 | Approved | |
WinRAR 5.90.0.20200401 | 91935 | Wednesday, April 1, 2020 | Approved | |
WinRAR 5.90 | 23578 | Monday, March 30, 2020 | Approved | |
WinRAR 5.80.0.20200219 | 77834 | Wednesday, February 19, 2020 | Approved | |
WinRAR 5.80.0.20200102 | 124986 | Thursday, January 2, 2020 | Approved | |
WinRAR 5.80 | 52855 | Wednesday, December 11, 2019 | Approved | |
WinRAR 5.71 | 294918 | Wednesday, May 8, 2019 | Approved | |
WinRAR 5.70.0.20190305 | 56965 | Tuesday, March 5, 2019 | Approved | |
WinRAR 5.70 | 36103 | 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.