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

Commit 260abca

Browse files
authored
Install v17 redistributables (#2943)
1 parent 3adb2fe commit 260abca

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/runtime-tools/win64/onefuzz.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -165,8 +165,8 @@ function Set-Restart {
165165

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

0 commit comments

Comments
 (0)