diff --git a/scripts/prepare-machine.ps1 b/scripts/prepare-machine.ps1 index 920be3d0b1..318648076d 100644 --- a/scripts/prepare-machine.ps1 +++ b/scripts/prepare-machine.ps1 @@ -230,10 +230,9 @@ function Install-SigningCertificates { # NB: XDP can be uninstalled via Uninstall-Xdp function Install-Xdp-Driver { if (!$IsWindows) { return } # Windows only - # Write-Host "Downloading XDP msi" - ls artifacts + Write-Host "Downloading XDP msi" $MsiPath = Join-Path $ArtifactsPath "xdp.msi" - # Invoke-WebRequest -Uri (Get-Content (Join-Path $PSScriptRoot "xdp.json") | ConvertFrom-Json).installer -OutFile $MsiPath + Invoke-WebRequest -Uri (Get-Content (Join-Path $PSScriptRoot "xdp.json") | ConvertFrom-Json).installer -OutFile $MsiPath Write-Host "Installing XDP driver" msiexec.exe /i $MsiPath /quiet | Out-Null } diff --git a/scripts/xdp.json b/scripts/xdp.json index 10371d3402..3de7a2f0e6 100644 --- a/scripts/xdp.json +++ b/scripts/xdp.json @@ -1,3 +1,3 @@ { - "installer": "https://github.com/microsoft/xdp-for-windows/releases/download/v1.0.1/xdp-for-windows.1.0.1.msi" + "installer": "https://github.com/microsoft/xdp-for-windows/releases/download/v1.1.0%2B2886c03f/xdp-for-windows.x64.1.1.0.msi" }