Winrar
Silent install package for Winrar
7.22.0-0
Utilities
Utilities
Preprod packages are packages built on LUTI.
They remain in PREPROD usually for 5 days, after which a second VirusTotal scan is performed to verify that the status has not changed.
If the package passes this last check, it is promoted to PROD and published on the store.
- package: tis-winrar
- name: Winrar
- version: 7.22.0-0
- categories: Utilities
- maintainer: WAPT Team,Tranquil IT, Alexis PAJOT
- editor: Eugene Roshal
- licence: Licence propriétaire
- locale: en
- target_os: windows
- impacted_process: WinRAR
- architecture: x64
- signature_date:
- size: 3.78 Mo
- homepage : http://rarlab.com
package : tis-winrar
version : 7.22.0-0
architecture : x64
section : base
priority : optional
name : Winrar
categories : Utilities
maintainer : WAPT Team,Tranquil IT, Alexis PAJOT
description : WinRAR is a proprietary data compression software developed by the Russian Eugene Roshal. It is free in trial version but a paid and complete version exists.
depends :
conflicts :
maturity : PREPROD
locale : en
target_os : windows
min_wapt_version : 2.0
sources :
installed_size :
impacted_process : WinRAR
description_fr : WinRAR est un logiciel propriétaire de compression de données développé par le Russe Eugene Roshal. Il est gratuit en version dessai mais une version payante et complète existe.
description_pl : WinRAR to zastrzeżone oprogramowanie do kompresji danych opracowane przez Russian Eugene Roshal. Jest ona bezpłatna w wersji próbnej, ale istnieje pełna wersja płatna.
description_de : WinRAR ist eine proprietäre Datenkompressions-Software, die von Eugene Roshal aus Russland entwickelt wurde. Es ist als Probeversion kostenlos, aber es gibt eine kostenpflichtige und vollständige Version.
description_es : WinRAR es un software propietario de compresión de datos desarrollado por el ruso Eugene Roshal. Es gratis en versión de prueba pero existe una versión de pago y completa.
description_pt : Winrar é um software proprietário de compressão de dados desenvolvido pelo russo Eugene Roshal. É gratuito em versão experimental, mas existe uma versão paga e completa.
description_it : Winrar è un software proprietario di compressione di dati sviluppato dal russo Eugene Roshal. È gratuito in versione di prova ma esiste una versione a pagamento e completa.
description_nl : WinRar is een eigen datacompressiesoftware ontwikkeld door de Russische Eugene Roshal. Het is gratis in een proefversie, maar er bestaat een volledig betaalde versie.
description_ru : WinRAR - это патентованное программное обеспечение для сжатия данных, разработанное российским Eugene Roshal. Оно бесплатно в пробной версии, но существует полностью оплаченная версия.
audit_schedule :
editor : Eugene Roshal
keywords :
licence : Licence propriétaire
homepage : http://rarlab.com
package_uuid : 8601ccb1-949a-495e-a345-42a0819b9764
valid_from :
valid_until :
forced_install_on :
changelog : https://www.win-rar.com/latestnews.html
min_os_version :
max_os_version :
icon_sha256sum : fc7deafb7756102d60b861f67537d19adae3a1d548ee32afed03ae19119563f9
signer : test
signer_fingerprint: b82fc8ef4a4475c0f69ac168176c2bfc58f572eb716c4eadd65e4785c155dd8e
signature_date : 2026-05-05T10:24:52.000000
signed_attributes : package,version,architecture,section,priority,name,categories,maintainer,description,depends,conflicts,maturity,locale,target_os,min_wapt_version,sources,installed_size,impacted_process,description_fr,description_pl,description_de,description_es,description_pt,description_it,description_nl,description_ru,audit_schedule,editor,keywords,licence,homepage,package_uuid,valid_from,valid_until,forced_install_on,changelog,min_os_version,max_os_version,icon_sha256sum,signer,signer_fingerprint,signature_date,signed_attributes
signature : GkxwjYICU6Y7YB0JYakQkOS1D3cRqpuH0B+bgc1LC/g/JQGVpBoN3jqjkXhsU1mDkPpZgujsaJwQkMC6U5EMEZTZhLsvA+EF8CqPWNHVbyuEfA9w0MkSnIKCB8xn5HBQipvn6udBrhWCKMTGQj3OYHO/vf7jN3ziIYPlqzohpbU8vieeONbCSrZ8YoSnQuTaAH9wlaZ73Tr+mGlErcLm4v7Mz5/26gGr57Kb/cXfXv6rEhl2fdkXdXgg5oTKLzMhrifHjroXpA37INfqQwfnh4jjTSVH1ZrYJHuTSu9UcDfwSCN4D013FJ7bHZfAoX/R/I4lRS2Lk01KX3IslLDkRA==
# -*- coding: utf-8 -*-
from setuphelpers import *
import time
def install():
try:
install_exe_if_needed(
glob.glob("*.exe")[0],
"/S",
key="WinRAR archiver",
min_version=control.version.split("-", 1)[0],
)
except:
time.sleep(10)
install_exe_if_needed(
glob.glob("*.exe")[0],
"/S",
key="WinRAR archiver",
min_version=control.version.split("-", 1)[0],
)
# -*- coding: utf-8 -*-
from setuphelpers import *
import time
dict_loc_file = {"en": "", "de": "d", "all": ""}
def update_package():
proxies = {}
if isfile(makepath(application_data(), "waptconsole", "waptconsole.ini")):
proxywapt = inifile_readstring(makepath(user_local_appdata(), "waptconsole", "waptconsole.ini"), "global", "http_proxy")
if proxywapt:
proxies = {"http": proxywapt, "https": proxywapt}
winrarversion = wgets("https://www.win-rar.com/postdownload.html", proxies=proxies).split("winrar-x64-")[1].split(".exe")[0]
reallang = control.locale
if reallang in dict_loc_file:
reallang = dict_loc_file[control.locale]
if control.architecture == "x64":
filename = "winrar-x64-%s%s.exe" % (winrarversion, reallang)
urldl = "https://www.rarlab.com/rar/%s" % filename
else:
filename = "wrar%s%s.exe" % (winrarversion, reallang)
urldl = "https://www.win-rar.com/fileadmin/winrar-versions/winrar/%s" % filename
if not isfile(filename):
wget(urldl, filename, proxies=proxies)
for exe in glob.glob("*.exe"):
if exe != filename:
remove_file(exe)
control.version = "%s-0" % (get_file_properties(filename)["ProductVersion"])
control.save_control_to_wapt(".")
01ca7fe94636e5a08fcb73849d3b5df25d51e2c82f4dd1a08f01798b25899819 : WAPT/certificate.crt
e67acf90c62cf6c4cc7af592fb1bf0931f1f3e79fb5779b544227115a2bd6dd5 : WAPT/control
fc7deafb7756102d60b861f67537d19adae3a1d548ee32afed03ae19119563f9 : WAPT/icon.png
4eaff9b011b6e1022efc04da29c3b5855326246b7309c0bd150a19d102491fea : luti.json
d4107476ff4100b2e937f86d1582bfe9110fd75371d9707db6eae21ed8d8bb9c : setup.py
5a31dd5c7f127dc53eec3e144d9698a7bccac89228fe859a33d5328bc3f20af2 : update_package.py
d669f4e15e9b8fde6e6dcc47697fc5a38b77e1fd5c608cf6423e4eba8df62498 : winrar-x64-722.exe