From 20271a126309315927b698080f57193c3c0abc5c Mon Sep 17 00:00:00 2001 From: Lightemerald Date: Mon, 13 Nov 2023 13:13:43 +0100 Subject: [PATCH] Fix2 --- setupApps.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setupApps.ps1 b/setupApps.ps1 index b78e487..13f9c67 100644 --- a/setupApps.ps1 +++ b/setupApps.ps1 @@ -58,7 +58,7 @@ function InstallZipMsi { $msiFilePath = Join-Path $tmpPath $(Join-Path $zipName $msi) Write-Host "SetupPath: $msiFilePath" Expand-Archive -Path (Join-Path $tmpPath $zip) -DestinationPath $tmpPath -Force - InstallMsi -app $msiFilePath + Start-Process -FilePath "msiexec.exe" -ArgumentList "/i `"$msiFilePath`" /qn" -Wait } function InstallZip {