From 19b4b824c786f2bc6c779b9bb50a737f0bb09758 Mon Sep 17 00:00:00 2001 From: Homes32 Date: Sat, 21 Jun 2025 17:17:59 -0500 Subject: [PATCH] Modified CrystalDiskInfo.script and CrystalDiskMark.script downloads to use .zip release package. --- .../Benchmarking/CrystalDiskMark.script | 15 +++++++-------- .../Diagnostics & Repair/CrystalDiskInfo.script | 15 +++++++-------- 2 files changed, 14 insertions(+), 16 deletions(-) diff --git a/Projects/PhoenixPE/Applications/Benchmarking/CrystalDiskMark.script b/Projects/PhoenixPE/Applications/Benchmarking/CrystalDiskMark.script index bec63e2..3544859 100644 --- a/Projects/PhoenixPE/Applications/Benchmarking/CrystalDiskMark.script +++ b/Projects/PhoenixPE/Applications/Benchmarking/CrystalDiskMark.script @@ -32,9 +32,9 @@ Title=CrystalDiskMark Author=Homes32 Level=5 -Version=1.0.2.0 +Version=1.1.0.0 Description=CrystalDiskMark is a simple disk benchmark software. -Date=2025-04-29 +Date=2025-06-21 Selected=False Mandatory=False @@ -43,7 +43,7 @@ Mandatory=False %ProgramExex86%="DiskMark32.exe" %ProgramExex64%="DiskMark64.exe" %DownloadURL%=https://sourceforge.net/projects/crystaldiskmark/files/latest/download -%SetupFile%="CrystalDiskMark.exe" +%SetupFile%="CrystalDiskMark.zip" // CrystalDiskMark v8.0.6 (and possibly earlier versions) does not correctly identify and process .ini files in the same // directory as the .exe and will always look in the %AppData% folder for the settings. %ConfigFilex86%="%TargetAppData%\%ProgramFolder%\DiskMark32.ini" @@ -93,11 +93,10 @@ If,%cb_PinToStartMenu%,Equal,True,PinShortcut,StartMenu,Auto,"%PEPrograms%\%Prog [ExtractProgram] Echo,"Extracting files..." GetParam,1,%DestDir% -InnoExtract,%ProgramsCache%\%ProgramFolder%\%SetupFile%,"%ProjectTemp%\%ProgramFolder%" -FileDeleteEx,"%ProjectTemp%\%ProgramFolder%\{App}\DiskMarkA64.exe" -If,%SourceArch%,Equal,x64,FileDeleteEx,"%ProjectTemp%\%ProgramFolder%\{App}\%ProgramExex86%" -Else,FileDeleteEx,"%ProjectTemp%\%ProgramFolder%\{App}\%ProgramExex64%" -FileCopy,"%ProjectTemp%\%ProgramFolder%\{App}\*.*",%DestDir% +Decompress,"%ProgramsCache%\%ProgramFolder%\%SetupFile%",%DestDir% +FileDeleteEx,"%DestDir%\DiskMarkA64.exe" +If,%SourceArch%,Equal,x64,FileDeleteEx,"%DestDir%\%ProgramExex86%" +Else,FileDeleteEx,"%DestDir%\%ProgramExex64%" [#DownloadProgram#] // =============================================================================================================================== diff --git a/Projects/PhoenixPE/Applications/Diagnostics & Repair/CrystalDiskInfo.script b/Projects/PhoenixPE/Applications/Diagnostics & Repair/CrystalDiskInfo.script index 4d2e007..3b1f66f 100644 --- a/Projects/PhoenixPE/Applications/Diagnostics & Repair/CrystalDiskInfo.script +++ b/Projects/PhoenixPE/Applications/Diagnostics & Repair/CrystalDiskInfo.script @@ -32,9 +32,9 @@ Title=CrystalDiskInfo Author=Homes32 Level=5 -Version=1.0.1.0 +Version=1.1.0.0 Description=CrystalDiskInfo is an Open Source utility that monitors and displays the health of your hard drive, including basic information, S.M.A.R.T. values, and disk temperature. -Date=2025-04-29 +Date=2025-06-21 Selected=False Mandatory=False @@ -43,7 +43,7 @@ Mandatory=False %ProgramExex86%="DiskInfo32.exe" %ProgramExex64%="DiskInfo64.exe" %DownloadURL%=https://sourceforge.net/projects/crystaldiskinfo/files/latest/download -%SetupFile%="CrystalDiskInfo.exe" +%SetupFile%="CrystalDiskInfo.zip" %ConfigFile%="%TargetPrograms%\%ProgramFolder%\DiskInfo.ini" [Process] @@ -94,11 +94,10 @@ If,%cb_PinToStartMenu%,Equal,True,PinShortcut,StartMenu,Auto,"%PEPrograms%\%Prog [ExtractProgram] Echo,"Extracting files..." GetParam,1,%DestDir% -InnoExtract,%ProgramsCache%\%ProgramFolder%\%SetupFile%,"%ProjectTemp%\%ProgramFolder%" -FileDeleteEx,"%ProjectTemp%\%ProgramFolder%\{App}\DiskInfoA64.exe" -If,%SourceArch%,Equal,x64,FileDeleteEx,"%ProjectTemp%\%ProgramFolder%\{App}\%ProgramExex86%" -Else,FileDeleteEx,"%ProjectTemp%\%ProgramFolder%\{App}\%ProgramExex64%" -FileCopy,"%ProjectTemp%\%ProgramFolder%\{App}\*.*",%DestDir% +Decompress,"%ProgramsCache%\%ProgramFolder%\%SetupFile%",%DestDir% +FileDeleteEx,"%DestDir%\DiskInfoA64.exe" +If,%SourceArch%,Equal,x64,FileDeleteEx,"%DestDir%\%ProgramExex86%" +Else,FileDeleteEx,"%DestDir%\%ProgramExex64%" [#DownloadProgram#] // ===============================================================================================================================