tis-crystaldiskinfo icon

CrystalDiskInfo

Paquet d’installation silencieuse pour CrystalDiskInfo

9.5.0-1

  • package: tis-crystaldiskinfo
  • name: CrystalDiskInfo
  • version: 9.5.0-1
  • categories: Utilities
  • maintainer: WAPT Team,Tranquil IT,Clément Baziret
  • editor: Crystal Dew World
  • licence: opensource_free,wapt_public
  • locale: all
  • target_os: windows
  • impacted_process: DiskInfo32,DiskInfo64
  • architecture: all
  • signature_date:
  • size: 5.42 Mo
  • installed_size: 17.30 Mo
  • homepage : https://crystalmark.info/en/software/crystaldiskinfo/
  • depends:

package           : tis-crystaldiskinfo
version           : 9.5.0-1
architecture      : all
section           : base
priority          : optional
name              : CrystalDiskInfo
categories        : Utilities
maintainer        : WAPT Team,Tranquil IT,Clément Baziret
description       : CrystalDiskInfo is an MIT-licensed S.M.A.R.T. utility for reading and monitoring disk drive status
depends           : tis-dotnetfx
conflicts         : 
maturity          : PROD
locale            : all
target_os         : windows
min_wapt_version  : 2.3
sources           : https://crystalmark.info/en/software/crystaldiskinfo/
installed_size    : 17300095
impacted_process  : DiskInfo32,DiskInfo64
description_fr    : CrystalDiskInfo est un utilitaire S.M.A.R.T. sous licence MIT qui permet de lire et de contrôler l'état des lecteurs de disques
description_pl    : CrystalDiskInfo to licencjonowane przez MIT narzędzie S.M.A.R.T. do odczytu i monitorowania stanu dysków
description_de    : CrystalDiskInfo ist ein MIT-lizenziertes S.M.A.R.T.-Programm zum Lesen und Überwachen des Laufwerkstatus
description_es    : CrystalDiskInfo es una utilidad S.M.A.R.T. con licencia MIT para leer y monitorizar el estado de las unidades de disco
description_pt    : O CrystalDiskInfo é um utilitário S.M.A.R.T. licenciado pelo MIT para ler e monitorizar o estado da unidade de disco
description_it    : CrystalDiskInfo è un'utility S.M.A.R.T. con licenza MIT per la lettura e il monitoraggio dello stato delle unità disco
description_nl    : CrystalDiskInfo is een S.M.A.R.T. hulpprogramma met een SIT-licentie voor het lezen en controleren van de status van schijfstations
description_ru    : CrystalDiskInfo - лицензированная MIT утилита S.M.A.R.T. для чтения и мониторинга состояния дисковых накопителей
audit_schedule    : 24h
editor            : Crystal Dew World
keywords          : crystaldiskinfo,s.m.a.r.t.,smart,utility,monitoring,disk,drive,status
licence           : opensource_free,wapt_public
homepage          : https://crystalmark.info/en/software/crystaldiskinfo/
package_uuid      : e5bd8163-dc2e-4feb-bd55-2188a899ebbc
valid_from        : 
valid_until       : 
forced_install_on : 
changelog         : https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-history/
min_os_version    : 5.1
max_os_version    : 
icon_sha256sum    : 6e1989215c0946c9bb4166f91153644817dd3d18ab634c94cec2ea1777925504
signer            : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date    : 2024-11-25T14:00:08.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         : xhGhoGu9hABM0wEHpk9Cs3Hug2JWP3ObXXHO5ZyvswmrcGXIZ/0u8HmqkbSHMzplPE1fzwlQuyTdMxASprDfAX9mpM3zMWxe91TByF389xP1F5cuFTQjnOoqGnjR/D+O8uxRZxEkhbxSQJyszgsPfsIBAOBLaHobfyvzYcy8eHOAroZKo6Dps24wpRERML3Rf2rjQRQipSxo6gm1imBeRd91hmcH42mcoN16PHqovDVhZIBY3CZIZMLxYC6BUzwfpkGAOlyt186V9fyMlqOHMcL2gXirWTIwBITV+7yQJfn7gW8QXyApC4z5s0Bx+ZKaexWh/6Ru0QcYsI6eeM9ajQ==

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


def install():
    bin_name = glob.glob("CrystalDiskInfo*.exe")[0]

    install_exe_if_needed(
        bin_name,
        silentflags="/silent /verysilent",
        key="CrystalDiskInfo_is1",
        min_version=control.get_software_version(),
    )


def audit():
    audit_status = "OK"
    app_path = ""

    if is64():
        app_path = makepath(programfiles, "CrystalDiskInfo", "DiskInfo64.exe")
    else:
        app_path = makepath(programfiles, "CrystalDiskInfo", "DiskInfo32.exe")
    run('"%s" /CopyExit' % app_path)

    with open("C:/Program Files/CrystalDiskInfo/DiskInfo.txt", "r") as f:
        for ligne in f:
            if "Health Status" in ligne:
                ligne = ligne[19:22]
                if ligne != "Bon":
                    audit_status = "ERROR"
    # remove_file(r"C:/Program Files/CrystalDiskInfo/DiskInfo.txt")

    return audit_status

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


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
    download_url = "https://crystalmark.info/redirect.php?product=CrystalDiskInfoInstaller"

    # Getting latest version information from download url
    requests_result = requests.head(download_url, proxies=proxies, allow_redirects=True)
    latest_bin = requests_result.url.split("/")[-1].split('.exe')[0] + ".exe"
    version = requests_result.url.split("/")[-1].split("CrystalDiskInfo")[-1].split(".")[0].replace("_", ".")

    # Downloading latest binaries
    print("Latest %s version is: %s" % (app_name, version))
    print("Download URL is: %s" % download_url)
    if not isfile(latest_bin):
        print("Downloading: %s" % latest_bin)
        wget(download_url, latest_bin, proxies=proxies)
    else:
        print("Binary is present: %s" % latest_bin)

    # Checking version from file
    version_from_file = get_version_from_binary(latest_bin)
    if Version(version_from_file, 4) != Version(version, 4) and version_from_file != "":
        print("Changing version to the version number of the binary (from: %s to: %s)" % (version, version_from_file))
        version = version_from_file
    else:
        print("Binary file version corresponds to online version")

    # Changing version of the package
    if Version(version, 4) > Version(control.get_software_version(), 4):
        print("Software version updated (from: %s to: %s)" % (control.get_software_version(), Version(version)))
        package_updated = True
    else:
        print("Software version up-to-date (%s)" % Version(version))
    control.set_software_version(version)
    control.save_control_to_wapt()

    # Deleting outdated binaries
    remove_outdated_binaries(latest_bin)

    # Validating or not update-package-sources
    return package_updated

2cae495a0b771498340d5105cc206c1680abf2e33c9dd4529a8c30b6fc4fa895 : CrystalDiskInfo9_5_0.exe
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
caaa87935a8eff3879270d3b2b1e6dde92a0ca580a54ffd16acf144edb27f527 : WAPT/control
6e1989215c0946c9bb4166f91153644817dd3d18ab634c94cec2ea1777925504 : WAPT/icon.png
2f54cfbfc22c57e9a873520155c5b1849d9be91de782c113083255c4c2988efc : luti.json
86a9546f42d7260d409621b55f2424b08eac62ee17066bc087c6c5b3759e38f1 : setup.py
41de6bc2c7cd5a3944a4ddb396c511f8eda87c07ff3d0aa7f03a9dc45cf4f5e1 : update_package.py