
CPUID CPU-Z
Silent install package for CPUID CPU-Z
2.17-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 new VirusTotal scan is performed.
If the package passes this last check, it is promoted to PROD and published on the store.
- package: tis-cpu-z
- name: CPUID CPU-Z
- version: 2.17-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.24 Mo
- homepage : https://www.cpuid.com/softwares/cpu-z.html
package : tis-cpu-z
version : 2.17-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 : c833daa7-8557-4244-92da-057fa3dd5332
valid_from :
valid_until :
forced_install_on :
changelog :
min_os_version :
max_os_version :
icon_sha256sum : b4938c35b76a40c64f421d40210e0ed7ed4e940f932a244cc2def7d9edff7829
signer : test
signer_fingerprint: b82fc8ef4a4475c0f69ac168176c2bfc58f572eb716c4eadd65e4785c155dd8e
signature_date : 2025-10-14T15:28:54.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 : f7s5vBieXZV2ssFl6bV96YnPWK5sTdQtUjU433TMKyZ+bt3BUXqPcRFxRYyGDE986tPjTkHyXZ2yFBCPeNPWQf1TC4RTJ8GBUd6xlYaBgl/Je/dgsXT75LTmeWHOC5HoehS0o23hJ2rW2FYg9wdsq3DQK/2eqqfr75CnDpx93duDEGbruLrCUP8NTKJVFb5vlVXYwSMB2skAcjb6gQlyd3Nsv8bzMHsgh6i/VLrhvHuC4rrNy5YdGquxEazfOW2dLvfPBA9iWxjL55D4xOUKJ2xLKsZdLhKxbtmIx/+NmrriqCYwgxQnyJwtCu8jOB/FYLGPvZDyAJIYeH3gkutKWQ==
# -*- 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
e169cb13f36cf9cfc5760a83cd90f4a9441499ba7bacb6485644d801058b8b1d : WAPT/control
b4938c35b76a40c64f421d40210e0ed7ed4e940f932a244cc2def7d9edff7829 : WAPT/icon.png
01b3dce81da718f1ef9dac8e802da48db039f7a53cba51fad841e8335a17af36 : cpu-z_2.17-en.exe
5bc59af6939cb514b532756aae9866a1aa1a2983d1a818379156c03d8c538590 : luti.json
2d5b2843110e9090132ed11aa7ad446e46d3290c161bc52f1e3b54cb81deb02f : setup.py
33803605b9431d1b9a4b187327d857b379f822f221549e34f2ae6af812952e0b : update_package.py