tis-advanced-systemcare icon

Advanced SystemCare

Silent install package for Advanced SystemCare

19.6.0-1
System and network
System and network

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-advanced-systemcare
  • name: Advanced SystemCare
  • version: 19.6.0-1
  • categories: System and network
  • maintainer: WAPT Team,Tranquil IT,Amel FRADJ,
  • licence: opensource_free,wapt_private
  • target_os: windows
  • architecture: all
  • signature_date:
  • size: 63.88 Mo
  • homepage : https://www.iobit.com/en/advancedsystemcarefree.php

package           : tis-advanced-systemcare
version           : 19.6.0-1
architecture      : all
section           : base
priority          : optional
name              : Advanced SystemCare
categories        : System and network
maintainer        : WAPT Team,Tranquil IT,Amel FRADJ,
description       : Speed up your computer, clean up your PC and protect your private data. AI makes everything easier and more extraordinary
depends           : 
conflicts         : 
maturity          : PREPROD
locale            : 
target_os         : windows
min_wapt_version  : 2.3
sources           : 
installed_size    : 
impacted_process  : 
description_fr    : Accélérez votre ordinateur, nettoyez votre PC et protégez vos données privées. L'IA rend tout plus facile et extraordinaire
description_pl    : Przyspiesz swój komputer, oczyść go i chroń swoje prywatne dane. Sztuczna inteligencja sprawia, że wszystko jest łatwiejsze i bardziej niezwykłe
description_de    : Beschleunigen Sie Ihren Computer, räumen Sie Ihren PC auf und schützen Sie Ihre privaten Daten. KI macht alles einfacher und außergewöhnlich
description_es    : Acelera tu ordenador, limpia tu PC y protege tus datos privados. La IA lo hace todo más fácil y extraordinario
description_pt    : Acelere o seu computador, limpe o seu PC e proteja os seus dados privados. A IA torna tudo mais fácil e extraordinário
description_it    : Velocizzare il computer, ripulirlo e proteggere i dati privati. L'intelligenza artificiale rende tutto più facile e straordinario
description_nl    : Versnel je computer, maak je pc schoon en bescherm je privégegevens. AI maakt alles eenvoudiger en bijzonderder
description_ru    : Ускорьте работу компьютера, очистите его и защитите свои личные данные. ИИ делает все проще и необычнее
audit_schedule    : 
editor            : 
keywords          : 
licence           : opensource_free,wapt_private
homepage          : https://www.iobit.com/en/advancedsystemcarefree.php
package_uuid      : d4d8268e-78c6-463c-820f-c332515565c3
valid_from        : 
valid_until       : 
forced_install_on : 
changelog         : 
min_os_version    : 
max_os_version    : 
icon_sha256sum    : 7e9875b0aec7a35be299259b87ba80a1e1842609007586fe3b0991898947819c
signer            : test
signer_fingerprint: b82fc8ef4a4475c0f69ac168176c2bfc58f572eb716c4eadd65e4785c155dd8e
signature_date    : 2026-09-09T10:42:39.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         : InADppbdvk9aIjA1t379OsLrsEsgmACBbM6TuQ6jqh2fj6XsDqo3iIaDfidraRZ101T3Ylqy2meup+bbxu22B8sqryHdUs/yNScdoMUcd58Ed3Ckwy8iyqqAi6sBy+T2UCTSK6Y/oms86CEhala8+Bpd3IYi82rqWogE8QeWrig6HDk72hapcZrDsc7MIOtKrIPK8H59qeWwHtxeK2BI6mZ023CFy7/zB8QzPnuK5B0Lea564b14fDvo6QuF47J4V4EKSlTope6F3FwCxJ1sQkd2cKo/1wYcTn5Af5mxJ8VlmV8r3yP8b+G7qTTcjYbe9kOoD4LgAhlWRv6g7hTdmg==

# -*- coding: utf-8 -*-
from setuphelpers import *

r"""
Usable WAPT package functions: install(), uninstall(), session_setup(), audit(), update_package()
 {
   "key":"Advanced SystemCare_is1",
   "name":"Advanced SystemCare",
   "version":"17.6.0",
   "install_date":"2024-08-29 00:00:00",
   "install_location":"C:\\Program Files (x86)\\IObit\\Advanced SystemCare\\",
   "uninstall_string":"\"C:\\Program Files (x86)\\IObit\\Advanced SystemCare\\unins000.exe\"",
   "publisher":"IObit",
   "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: advanced-systemcare-setup.exe")
    install_exe_if_needed(
        "advanced-systemcare-setup.exe",
        silentflags="/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-",
        key="Advanced SystemCare_is1",
        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://cdn.iobit.com/dl/advanced-systemcare-setup.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
abe608d3cdef74bc716cafbbd8c2202a2c5d72546e1454b95588f06240123c60 : WAPT/control
7e9875b0aec7a35be299259b87ba80a1e1842609007586fe3b0991898947819c : WAPT/icon.png
7064471a077ab13dc0ca2e7b31a3504d8c88405839dcf23cbc5e818d065a4f5d : advanced-systemcare-setup.exe
83c2992dac694a5910672c213dfd7b7cdbaf5814be5f22c6fa044c77fdfc3bc3 : luti.json
c6a0e16226a117b8c34276a08d3ed45372bd961426845cd6534d79237e306fb4 : setup.py
b2d4241fab70d7ad3a20651f79c855d2214c3ac9bfc194e32911303b4a371c2f : update_package.py