mirror of
https://github.com/fleetdm/fleet
synced 2026-04-25 23:47:25 +00:00
16 lines
328 B
Text
16 lines
328 B
Text
$logFile = "${env:TEMP}/fleet-install-software.log"
|
|
|
|
try {
|
|
|
|
$installProcess = Start-Process msiexec.exe `
|
|
-ArgumentList "/quiet /norestart /lv ${logFile} /i `"${env:INSTALLER_PATH}`"" `
|
|
-PassThru -Verb RunAs -Wait
|
|
|
|
Get-Content $logFile -Tail 500
|
|
|
|
Exit $installProcess.ExitCode
|
|
|
|
} catch {
|
|
Write-Host "Error: $_"
|
|
Exit 1
|
|
}
|