tis-glary-utilities icon

Glary Utilities

Silent install package for Glary Utilities

6.33.0.37-3
Utilities
Utilities

Preprod packages are packages built on LUTI. They remain in PREPROD usually for 5 days, after which a new VirusTotal scan is performed.
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.33.0.37-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.01 Mo
  • installed_size: 62.91 Mo
  • homepage : https://www.glarysoft.com/

package           : tis-glary-utilities
version           : 6.33.0.37-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      : cd871a92-18cc-4ef9-b57e-ad4c15b5110a
valid_from        : 
valid_until       : 
forced_install_on : 
changelog         : 
min_os_version    : 
max_os_version    : 
icon_sha256sum    : 35e894fee965236bd9c8abffb456c639e678e4c2e340b95c446c99380ef52236
signer            : test
signer_fingerprint: b82fc8ef4a4475c0f69ac168176c2bfc58f572eb716c4eadd65e4785c155dd8e
signature_date    : 2025-10-30T08:12:23.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         : WaM4UUXvgAbj7h5yIBSY00p0AJ24h4QOR0VHeuxd/E6j02CaM2uS8GXbxBvts1fr49iUKwy9H7Z9QVQlkXY28lGXmblWDrgDATIy6wQkFCblVGonUfO5XOATxJR8QMUeUOMFPZP9Sp5OyrTpU0EYxK8AOTIuXYa3ZTgJKUGomfO6mIqF9eRObfR4lQhsgnaL/yGowG12U1ZTSmgmMabQ52miCbQwaFXjD+5U2/weYDUfoS9WWLY+xurV+10seuMUzY70YLud9bWYW6OXJTF1bMgZ1GknnR9W1ZSbziMFD7M8NFeZ4Fz84Fp4xHpNjorrSNJ1NoNb6Azne4EckFg6/A==

# -*- 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
8bb13775e7587f35deabbec4f5af199ae6e4b9f3284a7f172913407d8214851b : WAPT/control
35e894fee965236bd9c8abffb456c639e678e4c2e340b95c446c99380ef52236 : WAPT/icon.png
64779cdb492c31655023731fc092a82ff6fe5d7e12873a84f99c5b24ad7cfc74 : gusetup.exe
6d90eb380e06030ed7d23878f5739f6823eaa35a5855f4e391e4894cf87afb2b : luti.json
f4e61e2cd33c4c3cc2ee923bd842341ea08edf4e9637eb2fa247e24dbe7f5a7f : setup.py
efab3c11e5709e6d2e8072e5f6954fb04c76fbbcee4b891f14593c872d6abb24 : update_package.py