Skip to content

Commit

Permalink
CI Win: Install VC 2010 Redist
Browse files Browse the repository at this point in the history
  • Loading branch information
mpiatka committed Jul 8, 2024
1 parent 2f601f5 commit 8f6c5fb
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/scripts/Windows/prepare.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -46,4 +46,10 @@ while ($attempts -eq 10) {
echo "C:\Program Files\NDI\$sdk\Bin\x64" >> ${env:GITHUB_PATH}
#Remove-Item C:\ndi.exe

#Install vc redist 2010
$url="https://download.microsoft.com/download/1/6/5/165255E7-1014-4D0A-B094-B6A430A6BFFC/vcredist_x64.exe"
Invoke-WebRequest $url -OutFile vcredist_x64.exe
Start-Process -FilePath "vcredist_x64.exe" -ArgumentList "/install /quiet /norestart" -Wait -NoNewWindow
Remove-Item vcredist_x64.exe

# vim: set sw=2:

0 comments on commit 8f6c5fb

Please sign in to comment.