Microsoft Visual C++ 2012 Redistributable (x64)

From LANCommander


Downloads

Version Release Date File
10.0.40219 Download

Install Detection

This script will look at the installed package list from Windows for anything matching Visual C++ 2012 Redistributable (x64).

$Installed = Get-Package | Where-Object -Property Name -like "Microsoft Visual C++ 2012 Redistributable (x64)*"

if ($Installed.Length -ge 0) {
    $Host.SetShouldExit(1)
} else {
    $Host.SetShouldExit(0)
}

Install Script

This script installs the Visual C++ 2012 Redistributable (x64) redistributable silently.

Write-Host "Installing Visual C++ 2012 Redistributable (x64)..."
Start-Process -FilePath "vcredist_x64.exe" -ArgumentList "/quiet /norestart" -Wait -Passthru
Write-Host "Done!"