Glary Utilities
Silent install package for Glary Utilities
6.39.0.43-3
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-glary-utilities
- name: Glary Utilities
- version: 6.39.0.43-3
- categories: Utilities
- maintainer: WAPT Team,Tranquil IT,Pierre Cosson
- editor: Glarysoft
- licence: proprietary
- locale: all
- target_os: windows
- impacted_process: Integrator
- architecture: all
- signature_date:
- size: 28.19 Mo
- installed_size: 62.91 Mo
- homepage : https://www.glarysoft.com/
package : tis-glary-utilities
version : 6.39.0.43-3
architecture : all
section : base
priority : optional
name : Glary Utilities
categories : Utilities
maintainer : WAPT Team,Tranquil IT,Pierre Cosson
description : Includes over 20+ system utilities to improve your computer performance.
depends :
conflicts :
maturity : PREPROD
locale : all
target_os : windows
min_wapt_version : 2.0
sources : https://www.glarysoft.com/
installed_size : 62910805
impacted_process : Integrator
description_fr : Comprend plus de 20 utilitaires système pour améliorer les performances de votre ordinateur
description_pl : Zawiera ponad 20+ narzędzi systemowych do poprawy wydajności komputera
description_de : Enthält mehr als 20 Systemdienstprogramme zur Verbesserung der Leistung Ihres Computers
description_es : Incluye más de 20 utilidades del sistema para mejorar el rendimiento de tu ordenador
description_pt : Inclui mais de 20+ utilitários de sistema para melhorar o desempenho do seu computador
description_it : Include oltre 20 utility di sistema per migliorare le prestazioni del computer
description_nl : Bevat meer dan 20+ systeemhulpprogramma's om uw computerprestaties te verbeteren
description_ru : Включает более 20+ системных утилит для повышения производительности компьютера
audit_schedule :
editor : Glarysoft
keywords :
licence : proprietary
homepage : https://www.glarysoft.com/
package_uuid : 8498556d-5135-46e9-8f26-e703c33ae70f
valid_from :
valid_until :
forced_install_on :
changelog :
min_os_version :
max_os_version :
icon_sha256sum : 35e894fee965236bd9c8abffb456c639e678e4c2e340b95c446c99380ef52236
signer : test
signer_fingerprint: b82fc8ef4a4475c0f69ac168176c2bfc58f572eb716c4eadd65e4785c155dd8e
signature_date : 2026-03-10T04:57:02.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 : doLzfS8DUgQYrMPfRSuxglZy8aVsYQLJjxwHHw2Dx5dR33IC3jQwabtfsA7OjAR/uVcWCSyUsGQ1kaZ2wfwy97ESfkOrns+kmoY4QDBKLpRssnncP7BPrL5VK8mm2heGHUnnLshgioUm265grotFt3ztuN1lr9cXCHbNkBnwaJVMrZOl2Pg3bLzrebUk06mST4XIKn/F8SptX2+WEx7yxxYYjN3xBbsz6SC3rX24gInfSdgJbU6qrim6Lz0PiYQdIe6Hq9RfAfqhAI8T7aWz+6Gps72PSg08LoZVkgVhsaDWXJVfIZhOtX5hr0CNSg+J2rnSsqhaFHtl/Xb7p6iv2g==
# -*- coding: utf-8 -*-
from setuphelpers import *
def install():
bin_name = glob.glob(f"gusetup.exe")[0]
# Installing the software
install_exe_if_needed(
bin_name,
silentflags="/S",
key="Glary Utilities",
min_version=control.get_software_version(),
)
# -*- coding: utf-8 -*-
from setuphelpers import *
from configparser import ConfigParser
def update_package():
# Declaring local variables
package_updated = False
proxies = get_proxies()
if not proxies:
proxies = get_proxies_from_wapt_console()
app_name = control.name
api_url = f"https://www.glarysoft.com/update/update.php?s=glary_utilities&c=10000&v={control.get_software_version()}"
config = ConfigParser()
config.read_string(wgets(api_url, proxies=proxies))
version = config['Version']['Version']
download_url = config['Version']['UpdateUrl']
latest_bin = download_url.rsplit("/", 1)[-1]
latest_bin_extension = latest_bin.rsplit('.', 1)[-1]
# Downloading latest binaries
print(f"Latest {app_name} version is: {version}")
print(f"Download URL is: {download_url}")
if not isfile(latest_bin):
print(f"Downloading: {latest_bin}")
wget(download_url, latest_bin, proxies=proxies)
else:
print(f"Binary is present: {latest_bin}")
# Changing version of the package
if Version(version) > Version(control.get_software_version()):
print(f"Software version updated (from: {control.get_software_version()} to: {Version(version)})")
package_updated = True
else:
print(f"Software version up-to-date ({Version(version)})")
for f in glob.glob(f'*.{latest_bin_extension}'):
if f != latest_bin:
remove_file(f)
control.set_software_version(version)
control.save_control_to_wapt()
return package_updated
01ca7fe94636e5a08fcb73849d3b5df25d51e2c82f4dd1a08f01798b25899819 : WAPT/certificate.crt
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 : WAPT/changelog.txt
b427dc4b9c2be0f90fe3dcd7ceb97a8714b0fb2d663e13450c2c12970470424f : WAPT/control
35e894fee965236bd9c8abffb456c639e678e4c2e340b95c446c99380ef52236 : WAPT/icon.png
6e7a189636c4b2c42bb53b71a3667540360b3dd2ad3e175c3db2583537cebb2a : gusetup.exe
628366c7687b140c47f686bf725cefba3bcaf931e98ceeb7f032905a442e3a06 : luti.json
f4e61e2cd33c4c3cc2ee923bd842341ea08edf4e9637eb2fa247e24dbe7f5a7f : setup.py
efab3c11e5709e6d2e8072e5f6954fb04c76fbbcee4b891f14593c872d6abb24 : update_package.py