Skip to content
This repository has been archived by the owner on Nov 1, 2023. It is now read-only.

Commit

Permalink
Install v17 redistributables (#2943)
Browse files Browse the repository at this point in the history
  • Loading branch information
Porges authored Mar 24, 2023
1 parent 3adb2fe commit 260abca
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/runtime-tools/win64/onefuzz.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -165,8 +165,8 @@ function Set-Restart {

function Install-VCRedist {
log "installing VC Redist"
$x64Release = 'https://aka.ms/vs/15/release/VC_redist.x64.exe'
$x86Release = 'https://aka.ms/vs/15/release/VC_redist.x86.exe'
$x64Release = 'https://aka.ms/vs/17/release/VC_redist.x64.exe'
$x86Release = 'https://aka.ms/vs/17/release/VC_redist.x86.exe'
$ProgressPreference = 'SilentlyContinue'
Invoke-WebRequest -Uri $x64Release -OutFile "C:\onefuzz\vcredist_x64.exe"
Invoke-WebRequest -Uri $x86Release -OutFile "C:\onefuzz\vcredist_x86.exe"
Expand Down

0 comments on commit 260abca

Please sign in to comment.