From 28da6d6fa10b8acd3ef2657aafdf8ff1244f4037 Mon Sep 17 00:00:00 2001 From: jpark37 Date: Fri, 29 May 2020 05:05:11 -0700 Subject: [PATCH] Update Windows2019 image to use 2004 SDK & WDK (#935) --- images/win/scripts/Installers/Install-WDK.ps1 | 4 ++-- images/win/scripts/Installers/Windows2019/Install-VS2019.ps1 | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/images/win/scripts/Installers/Install-WDK.ps1 b/images/win/scripts/Installers/Install-WDK.ps1 index 557152cf..67da3a32 100644 --- a/images/win/scripts/Installers/Install-WDK.ps1 +++ b/images/win/scripts/Installers/Install-WDK.ps1 @@ -9,8 +9,8 @@ Import-Module -Name ImageHelpers -Force if (Test-IsWin19) { - $winSdkUrl = "https://go.microsoft.com/fwlink/p/?linkid=2083338" - $wdkUrl = "https://go.microsoft.com/fwlink/?linkid=2085767" + $winSdkUrl = "https://go.microsoft.com/fwlink/p/?linkid=2120843" + $wdkUrl = "https://go.microsoft.com/fwlink/?linkid=2128854" $FilePath = "C:\Program Files (x86)\Windows Kits\10\Vsix\VS2019\WDK.vsix" $VSver = "2019" } diff --git a/images/win/scripts/Installers/Windows2019/Install-VS2019.ps1 b/images/win/scripts/Installers/Windows2019/Install-VS2019.ps1 index 08d5e7ea..e1a9c4d0 100644 --- a/images/win/scripts/Installers/Windows2019/Install-VS2019.ps1 +++ b/images/win/scripts/Installers/Windows2019/Install-VS2019.ps1 @@ -72,6 +72,7 @@ $WorkLoads = '--allWorkloads --includeRecommended ' + ` '--add Microsoft.VisualStudio.Component.Windows10SDK.17134 ' + ` '--add Microsoft.VisualStudio.Component.Windows10SDK.17763 ' + ` '--add Microsoft.VisualStudio.Component.Windows10SDK.18362 ' + ` + '--add Microsoft.VisualStudio.Component.Windows10SDK.19041 ' + ` '--add Microsoft.VisualStudio.Component.WinXP ' + ` '--add Microsoft.VisualStudio.ComponentGroup.Azure.CloudServices ' + ` '--add Microsoft.VisualStudio.ComponentGroup.Azure.ResourceManager.Tools ' + `