Fix Sismolog by using uncompressed version

This commit is contained in:
2024-01-23 11:30:13 +01:00
parent 0c1d67c358
commit 216de49e8b
3 changed files with 13 additions and 4 deletions

BIN
Setup files/Sismolog.zip Normal file

Binary file not shown.

View File

@@ -127,7 +127,7 @@ function InstallApps {
InstallExeSetup -app "winstars_installer.exe" -skipIf "C:\Program Files\WinStars3"
#InstallZip -zip "Tectoglob3D-win32-ia32.zip" -exe "Tectoglob3D.exe" -app "Tectoglob3D"
#InstallZip -zip "Tectoglob_11_complet.zip" -exe "TectoGlob.exe" -app "TectoGlob"
InstallExe -app "Sismolog.exe"
InstallZip -zip "Sismolog.zip" -exe "Sismolog.exe" -app "Sismolog"
InstallExe -app "Respipoisson.exe"
InstallMsi -app "regressi-mpeg-setup.msi"
if (Test-Path 'C:\Users\Admin\AppData\Roaming\Microsoft\Start Menu\Programs\Regressi.ink') {

View File

@@ -22,9 +22,9 @@ function DownloadFiles {
# FileName = "Tectoglob_11_complet.zip"
#},
@{
Url = "https://git.justw.tf/Lightemerald/setup-script/raw/branch/main/Setup%20files/Sismolog.exe"
FileName = "Sismolog.exe"
Hash = "2d57ac0dd260e33194fbd53a91ab707d273bc80d"
Url = "https://git.justw.tf/Lightemerald/setup-script/raw/branch/main/Setup%20files/Sismolog.zip"
FileName = "Sismolog.zip"
Hash = "31d10f5f2816281e6ea632e2ca1f0d7daa9fbfff"
},
@{
Url = "https://git.justw.tf/Lightemerald/setup-script/raw/branch/main/Setup%20files/respipoisson.exe"
@@ -111,6 +111,15 @@ function DownloadFiles {
}
)
}
"Office-setup" {
$filesToDownload = @(
@{
Url = "https://c2rsetup.officeapps.live.com/c2r/download.aspx?ProductreleaseID=O365ProPlusRetail&platform=x64&language=fr-fr&version=O16GA" # Validated 23/01/24
FileName = "OfficeSetup.exe"
Hash = "6e01f58e614a0c5a71b68930564fa779764f8e5f"
}
)
}
default { Write-Host "Invalid selection." }
}
foreach ($fileInfo in $filesToDownload) {