Microsoft Visual C++ 2019 Redistributable (x86): Difference between revisions
DoctorDalek (talk | contribs) No edit summary |
DoctorDalek (talk | contribs) No edit summary |
||
Line 1: | Line 1: | ||
[[Category:Redistributables]] | [[Category:Redistributables]] | ||
{{Redistributable.DownloadBox | |||
|Downloads = | |||
{{Redistributable.DownloadBox.Row|Version = 14.28.29334|File = Microsoft Visual C++ 2019 Redistributable (x86).zip|ReleaseDate = }} | |||
}} | |||
{{Redistributable.Scripts.DetectInstall | {{Redistributable.Scripts.DetectInstall | ||
|Name = Install Detection | |Name = Install Detection |
Revision as of 00:43, 30 November 2023
Downloads
Version | Release Date | File |
---|---|---|
14.28.29334 | Download |
Install Detection
This script will look at the installed package list from Windows for anything matching Visual C++ 2019 Redistributable (x86).
$Installed = Get-Package "Microsoft Visual C++ 2015-20* Redistributable (x86)*"
if ($Installed.Length -ge 0) {
$Host.SetShouldExit(1)
} else {
$Host.SetShouldExit(0)
}
Install Script
This script installs the Visual C++ 2019 Redistributable (x86) redistributable silently.
Write-Host "Installing Visual C++ 2019 Redistributable (x86)..."
Start-Process -FilePath "VC_redist.x86.exe" -ArgumentList "/quiet /norestart" -Wait -Passthru
Write-Host "Done!"