CPUID CPU-Z
Paquet d’installation silencieuse pour CPUID CPU-Z
2.19-1
System and network
System and network
Les paquets PREPROD sont des paquets construits via LUTI.
Ils restent généralement 5 jours en PREPROD, après quoi un deuxième scan VirusTotal est effectué pour vérifier que le status n'a pas changé.
Si le paquet réussit ce dernier contrôle, il est promu en PROD et publié sur le store.
- package: tis-cpu-z
- name: CPUID CPU-Z
- version: 2.19-1
- categories: System and network
- maintainer: WAPT Team,Tranquil IT,Amel FRADJ
- licence: opensource_free,wapt_public
- target_os: windows
- architecture: all
- signature_date:
- size: 4.30 Mo
- homepage : https://www.cpuid.com/softwares/cpu-z.html
package : tis-cpu-z
version : 2.19-1
architecture : all
section : base
priority : optional
name : CPUID CPU-Z
categories : System and network
maintainer : WAPT Team,Tranquil IT,Amel FRADJ
description : A free system profiling application (system monitor) that detects the CPU, RAM, motherboard chipset and other hardware features
depends :
conflicts :
maturity : PREPROD
locale :
target_os : windows
min_wapt_version : 2.3
sources :
installed_size :
impacted_process :
description_fr : Une application gratuite de profilage système (moniteur système) qui détecte l'unité centrale de traitement, la RAM, le chipset de la carte mère et d'autres fonctionnalités matérielles
description_pl : Bezpłatna aplikacja do profilowania systemu (monitor systemu), która wykrywa procesor, pamięć RAM, chipset płyty głównej i inne funkcje sprzętowe
description_de : Eine kostenlose Systemprofilierungsanwendung (Systemmonitor), die die CPU, den RAM, den Chipsatz des Motherboards und andere Hardwarefunktionen erkennt
description_es : Una aplicación gratuita de perfilado del sistema (monitor del sistema) que detecta la CPU, la RAM, el chipset de la placa base y otras características del hardware
description_pt : Uma aplicação gratuita de criação de perfis do sistema (monitor do sistema) que detecta a CPU, a RAM, o chipset da placa-mãe e outras caraterísticas do hardware
description_it : Un'applicazione gratuita per la profilazione del sistema (monitor di sistema) che rileva la CPU, la RAM, il chipset della scheda madre e altre caratteristiche hardware
description_nl : Een gratis systeemprofielprogramma (systeemmonitor) dat de CPU, het RAM-geheugen, de chipset van het moederbord en andere hardwarekenmerken detecteert
description_ru : Бесплатное приложение для профилирования системы (системный монитор), которое определяет процессор, оперативную память, чипсет материнской платы и другие аппаратные характеристики
audit_schedule :
editor :
keywords :
licence : opensource_free,wapt_public
homepage : https://www.cpuid.com/softwares/cpu-z.html
package_uuid : 9d91716e-1c28-4d24-991e-11c5353b60a2
valid_from :
valid_until :
forced_install_on :
changelog :
min_os_version :
max_os_version :
icon_sha256sum : b4938c35b76a40c64f421d40210e0ed7ed4e940f932a244cc2def7d9edff7829
signer : test
signer_fingerprint: b82fc8ef4a4475c0f69ac168176c2bfc58f572eb716c4eadd65e4785c155dd8e
signature_date : 2026-03-13T15:55:40.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 : m+5W80TarZULfO6y+2H5YarkGB9lRtuxYQgJieWBVRct8w7SmVnSRFerCOBVDHesoi00o5S1qxuLgyEqwN25CYtm1q4CRgaNov3roVochLLsTt5TzEUbJMbOeqhDFKYiGyl/EQHtyRQmKhooOQqDSgobwTQjHd69LkuWHvPxXBcala4nh+I62cwfl7+rmOZZkfhcj9IlnkGXx5LQlQPGWFLPk82Gulq8a3ikSwQZB0h3W5fL34YG6F4lNAyNqnZnjHN8wfo8sc/Ib2xPnEKcsOakG7cka/v00ytmStC2PdvbUxutNniCpzchtncQAaVw9fxzjXgUOCekFa+LOst9+w==
# -*- coding: utf-8 -*-
from setuphelpers import *
r"""
Usable WAPT package functions: install(), uninstall(), session_setup(), audit(), update_package()
"""
# 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
bin_name = glob.glob('cpu-z_*-en.exe')[0]
# Installing the software
install_exe_if_needed(bin_name,
silentflags='/VERYSILENT /SUPPRESSMSGBOXES /NORESTART',
key='CPUID CPU-Z_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()
url_base = "https://www.cpuid.com/softwares/cpu-z.html"
response = requests.get(url_base,allow_redirects=True, proxies=proxies)
# Extract the correct div using bs_find_all
divs = bs_find_all(response.text, "div","class","links", proxies=proxies)
exe_file = None
for div in divs:
if exe_file:
break
links = div.find_all('a', href=True)
for link in links:
if link['href'].endswith('.exe'):
href = link['href']
exe_file = href
latest_bin = exe_file.split('/')[-1]
download_url = "https://download.cpuid.com/cpu-z/"+ latest_bin
version = latest_bin.split("_")[-1].rsplit('-')[0]
break
# 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
c7e182d847a39a2d9fd4b3649b70664bf248463bb299a81eea1870edd4a22908 : WAPT/control
b4938c35b76a40c64f421d40210e0ed7ed4e940f932a244cc2def7d9edff7829 : WAPT/icon.png
fe2e2556fc3c13722ceb1831c8c07b232fea25d5ba2c70d43d9eeb7b0008796f : cpu-z_2.19-en.exe
0753a2a98d724ea43e1f4334b6dcfc14aebb7347905ef0d355ab1f28d359fbd0 : luti.json
2d5b2843110e9090132ed11aa7ad446e46d3290c161bc52f1e3b54cb81deb02f : setup.py
33803605b9431d1b9a4b187327d857b379f822f221549e34f2ae6af812952e0b : update_package.py