diff --git a/Sources/Winget-AutoUpdate/functions/Install-Prerequisites.ps1 b/Sources/Winget-AutoUpdate/functions/Install-Prerequisites.ps1 index 5cd9528e..64670b5a 100644 --- a/Sources/Winget-AutoUpdate/functions/Install-Prerequisites.ps1 +++ b/Sources/Winget-AutoUpdate/functions/Install-Prerequisites.ps1 @@ -64,7 +64,7 @@ function Install-Prerequisites { if ($needsInstall) { try { Write-ToLog "Installing VC++ Redistributable ($osArch)..." - $VCRedistUrl = "https://aka.ms/vs/17/release/VC_redist.$osArch.exe" + $VCRedistUrl = "https://aka.ms/vc14/VC_redist.$osArch.exe" $installer = "$env:TEMP\VC_redist.$osArch.exe" Invoke-WebRequest $VCRedistUrl -OutFile $installer -UseBasicParsing