Speccy
Paquet d'installation silencieuse pour Speccy
1.34.84-6
System and network
System and network
- package: tis-speccy
- name: Speccy
- version: 1.34.84-6
- categories: System and network
- maintainer: WAPT Team,Tranquil IT,Kenan KILICARSLAN
- licence: GPL
- locale: all
- target_os: windows
- impacted_process: speccy.exe
- architecture: all
- signature_date:
- size: 21.56 Mo
- installed_size: 4.52 Mo
- homepage : https://www.ccleaner.com/speccy
package : tis-speccy
version : 1.34.84-6
architecture : all
section : base
priority : optional
name : Speccy
categories : System and network
maintainer : WAPT Team,Tranquil IT,Kenan KILICARSLAN
description : Speccy is a free system information display software, developed by Piriform Ltd, and running on a computer running the Windows operating system
depends :
conflicts :
maturity : PROD
locale : all
target_os : windows
min_wapt_version : 2.0
sources : https://www.ccleaner.com/speccy/download/
installed_size : 4517888
impacted_process : speccy.exe
description_fr : Speccy est un gratuiciel d'affichage d'informations système, développé par Piriform Ltd, et fonctionnant sur un ordinateur muni du système d'exploitation Windows
description_pl : Speccy to darmowe oprogramowanie do wyświetlania informacji systemowych, opracowane przez firmę Piriform Ltd, działające na komputerze z systemem operacyjnym Windows
description_de : Speccy ist eine kostenlose Software zur Anzeige von Systeminformationen, die von Piriform Ltd
description_es : Speccy es un software gratuito de visualización de información del sistema, desarrollado por Piriform Ltd, que se ejecuta en un ordenador con sistema operativo Windows
description_pt : Speccy é um software gratuito de exibição de informação do sistema, desenvolvido pela Piriform Ltd, e executado num computador com o sistema operativo Windows
description_it : Speccy è un software gratuito per la visualizzazione delle informazioni di sistema, sviluppato da Piriform Ltd, che funziona su un computer con sistema operativo Windows
description_nl : Speccy is een gratis systeeminformatiedisplay-software, ontwikkeld door Piriform Ltd, en draait op een computer met het Windows-besturingssysteem
description_ru : Speccy - это бесплатное программное обеспечение для отображения системной информации, разработанное компанией Piriform Ltd. и работающее на компьютере под управлением операционной системы Windows
audit_schedule :
editor :
keywords : speccy,windows
licence : GPL
homepage : https://www.ccleaner.com/speccy
package_uuid : cc91eada-48cc-4728-b196-f254d9b13d47
valid_from :
valid_until :
forced_install_on :
changelog :
min_os_version : 6.1
max_os_version :
icon_sha256sum : 58fa6574e3d6d6e2d2bc03f6dfd0bf8283dab0f95c8579ceb8df0244a2642412
signer : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date : 2026-06-28T13:05:44.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 : nGxOmFsCA/1XT+v64kA+fQFKluJoVc+SkPOyrv7cnFgFFCeQh+Qdv7QAm/XqTxPOsbwFqlPBZJf5TOexnl2l5DcFa2aAHIZ4CICCzN+n6lBdT/7p7/vHPbAC0h0XFQwViC72yemaRlUO8QSyIHGqygAPe3zuY8VcgpCAWEm0vgtcKXqGZk0nrrsErOvyWNTcI1n+glw+Rxd2N0vJ/A0Ulg5a+NdVjlJEudv5csax+GtTab84qGorI/rMcT4ewWH5hcVWvR5SzUz4Gjw0AnEF5b0GYEcDCfwk26tQIEUr68aCAiVOksgliMuaoyWqv68Tgq3IvcAy8Wzrj6XZQ7djww==
# -*- coding: utf-8 -*-
from setuphelpers import *
def install():
bin_name = glob.glob("spsetup*.exe")[0]
print("installing tis-speccy")
install_exe_if_needed(
bin_name,
"/S /SUPPRESSMSGBOXES /NORESTART",
key="Speccy",
min_version=".".join(control.version.split(".")[:2]),
)
# Kill at end of installation
killalltasks("spsetup.exe")
# -*- coding: utf-8 -*-
from setuphelpers import *
import requests
import glob
def update_package():
# Declaring local variables
package_updated = False
proxies = get_proxies_from_wapt_console()
if not proxies:
proxies = get_proxies()
url = "https://www.ccleaner.com/speccy/download"
user_agent = "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:140.0) Gecko/20100101 Firefox/140.0"
# Getting latest version number
print("URL used is: %s" % url)
results = bs_find_all(url,"div","class","band br bl pricing-table-footer__aside",user_agent=user_agent,proxies=proxies)
version = results[0].find("strong").get_text(strip=True).split("v")[1]
latest_bin = results[0].find("strong").get_text(strip=True)
# Getting latest version information from official sources
download_url = "https://download.ccleaner.com/spsetup134.exe"
binary_name = download_url.split("/")[-1]
print("Latest %s is on version: %s" % (control.name, version))
# Downloading latest binaries
if not isfile(latest_bin):
print("Downloading: %s" % latest_bin)
wget(download_url, binary_name, proxies=proxies)
# Changing version of the package
control.set_software_version(version)
control.save_control_to_wapt()
print("Changing package version to: %s in WAPT\\control" % control.version)
# Deleting outdated binaries
current_binary = binary_name.lower()
for f in glob.glob("*.exe"):
if f.lower() != current_binary:
print("Removing old binary: %s" % f)
remove_file(f)
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
3fcb3b3ffc384fdf68687fc139534b1fc50a5c5794b49b055383283f2d949eef : WAPT/control
58fa6574e3d6d6e2d2bc03f6dfd0bf8283dab0f95c8579ceb8df0244a2642412 : WAPT/icon.png
863a07bd9a32b0652631d56549f46082d1d0c417b472276f1531240b05b9007f : luti.json
3d168ddfcb9d249b245a4f3bb5c59b26cf7346c7abf8485b46a9bcad615dd708 : setup.py
a7f525daeb124f90d2a07d2975f40b9ee568d56244902d3418728ce6dfd737f0 : spsetup134.exe
d8b71b037d570074d9c99da5b7924aecc0118dddd8b85c08a822f2c85d8c053b : update_package.py