Absolute Uninstaller
Silent install package for Absolute Uninstaller
6.0.1.20-1
Configuration
Configuration
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-absolute-uninstaller
- name: Absolute Uninstaller
- version: 6.0.1.20-1
- categories: Configuration
- maintainer: WAPT Team,Tranquil IT,Amel FRADJ,
- licence: proprietary_restricted,wapt_private
- target_os: windows
- architecture: all
- signature_date:
- size: 8.65 Mo
- homepage : http://www.glarysoft.com/absolute-uninstaller/
package : tis-absolute-uninstaller
version : 6.0.1.20-1
architecture : all
section : base
priority : optional
name : Absolute Uninstaller
categories : Configuration
maintainer : WAPT Team,Tranquil IT,Amel FRADJ,
description : GlarySoft Absolute Uninstaller is a full-featured program uninstaller that helps you completely remove programs without leaving behind invalid ones to gradually overload your system
depends :
conflicts :
maturity : PREPROD
locale :
target_os : windows
min_wapt_version : 2.3
sources :
installed_size :
impacted_process :
description_fr : GlarySoft Absolute Uninstaller est un désinstallateur de programmes complet qui vous aide à supprimer complètement les programmes sans laisser de restes invalides pour surcharger progressivement votre système
description_pl : GlarySoft Absolute Uninstaller to kompletny deinstalator programów, który pomaga całkowicie usunąć programy bez pozostawiania żadnych nieprawidłowych pozostałości, które stopniowo obciążają system
description_de : GlarySoft Absolute Uninstaller ist ein umfassender Programm-Deinstaller, der Ihnen hilft, Programme vollständig zu entfernen, ohne ungültige Reste zu hinterlassen, um Ihr System allmählich zu überlasten
description_es : GlarySoft Absolute Uninstaller es un completo desinstalador de programas que le ayuda a eliminarlos por completo sin dejar restos no válidos que sobrecarguen gradualmente su sistema
description_pt : GlarySoft Absolute Uninstaller é um desinstalador de programas completo que o ajuda a remover programas completamente sem deixar quaisquer restos inválidos para sobrecarregar gradualmente o seu sistema
description_it : GlarySoft Absolute Uninstaller è un disinstallatore di programmi completo che aiuta a rimuovere completamente i programmi senza lasciare residui non validi che sovraccarichino gradualmente il sistema
description_nl : GlarySoft Absolute Uninstaller is een compleet programma verwijderprogramma dat je helpt om programma's volledig te verwijderen zonder ongeldige restanten achter te laten die je systeem geleidelijk overbelasten
description_ru : GlarySoft Absolute Uninstaller - это полный деинсталлятор программ, который поможет вам полностью удалить программы, не оставляя недействительных остатков, которые будут постепенно загромождать вашу систему
audit_schedule :
editor :
keywords :
licence : proprietary_restricted,wapt_private
homepage : http://www.glarysoft.com/absolute-uninstaller/
package_uuid : 071dd58c-7188-4b7c-bc7a-a87d98ef1330
valid_from :
valid_until :
forced_install_on :
changelog :
min_os_version :
max_os_version :
icon_sha256sum : d979233f46645dad475c70122afb610a7fa344308d71455326fe10025381e8e4
signer : test
signer_fingerprint: b82fc8ef4a4475c0f69ac168176c2bfc58f572eb716c4eadd65e4785c155dd8e
signature_date : 2026-03-10T03:58:00.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 : A/+g8x+ao8Oim481WbVvReWXihpjvf4DsMP4z/8fp0IfYTsQiyyUIw41QugUJz57sWNautafH44cePJAVySsIZc2vQpD3tB4/V+yR79zryMbgpsiXPKXf4y4MJ09Ky0+j6GoeGSmwKZPHY8kmDi5XvemmlXbejtkPHLNRWu4x0TxK3NN4hQiPI1E5H+vJHmLqeSe4oA0vOm8VsCtBvK6obJOOFuGx2d6gvgubOa0EyZ162jDuF6sUEn72NsYQtbUzqDIdwXNbxFv/hTIR3Ty1JS9Q1c7y5cN1CTaNBKZNNBEOnvTFLcVnMivRrbsQXTykQ1Sy6zmsnM1a8FKUh9nXg==
# -*- coding: utf-8 -*-
from setuphelpers import *
r"""
Usable WAPT package functions: install(), uninstall(), session_setup(), audit(), update_package()
{
"key":"Absolute Uninstaller",
"name":"Absolute Uninstaller 6.0.1.8",
"version":"6.0.1.8",
"install_date":"",
"install_location":"",
"uninstall_string":"C:\\Program Files (x86)\\Glarysoft\\Absolute Uninstaller\\uninst.exe",
"publisher":"Glarysoft Ltd",
"system_component":0,
"win64":false
},
"""
# Declaring global variables - Warnings: 1) WAPT context is only available in package functions; 2) Global variables are not persistent between calls
def install():
# Declaring local variables
# Installing the software
print("Installing: ausetup.exe")
install_exe_if_needed(
"ausetup.exe",
silentflags="/S",
key="Absolute Uninstaller",
min_version=control.get_software_version(),
)
# -*- coding: utf-8 -*-
from setuphelpers import *
from setupdevhelpers import *
import glob
def update_package():
# Declaring local variables
package_updated = False
proxies = get_proxies_from_wapt_console()
if not proxies:
proxies = get_proxies()
download_url = "https://download.glarysoft.com/ausetup.exe"
latest_bin = download_url.split("/")[-1]
# Downloading latest binaries
print("Download URL is: %s" % download_url)
if not isfile(latest_bin):
print("Downloading: %s" % latest_bin)
wget(download_url, latest_bin, proxies=proxies)
package_updated = True
else:
print("Binary is present: %s" % latest_bin)
# Deleting outdated binaries
for f in glob.glob("*.exe"):
if f != latest_bin:
remove_file(f)
version = get_version_from_binary(latest_bin)
# Mettre à jour le package
control.set_software_version(version)
control.save_control_to_wapt()
01ca7fe94636e5a08fcb73849d3b5df25d51e2c82f4dd1a08f01798b25899819 : WAPT/certificate.crt
cb4a81f983d9789e3a9eb56842ca05ae2fd24653025c444b6e6765cbb5e5e217 : WAPT/control
d979233f46645dad475c70122afb610a7fa344308d71455326fe10025381e8e4 : WAPT/icon.png
9c0f8019f0f81a62a5e404c169c61bd52e495d8699b830c3132469ae14e078af : ausetup.exe
70b2bf50454a368a74226a3d3a608c0005b993d4bb5a71790c7f64499586f4d9 : luti.json
d06e41392b7685f6b014de770089c157b30ac6b652db07b825fd89ed9477f5c4 : setup.py
266fbb02d51dbdccd44975ac7663e666cfeed57ea853c20deb94a41c354c39ad : update_package.py