added norestart to VC

pull/19/head
Romain 2022-02-26 02:07:50 +01:00 committed by GitHub
parent 320b2ce356
commit f3a06fd3c9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -61,7 +61,7 @@ function Check-Prerequisites{
$ProgressPreference = 'SilentlyContinue'
Invoke-WebRequest $SourceURL -OutFile $Installer
Write-host "Installing VC_redist.$OSArch.exe..."
Start-Process -FilePath $Installer -Args "-q" -Wait
Start-Process -FilePath $Installer -Args "/quiet /norestart" -Wait
Remove-Item $Installer -ErrorAction Ignore
Write-host "MS Visual C++ 2015-2019 installed successfully" -ForegroundColor Green
}