From 3186c675da7fb80dfbd4e38598f03814c5f915dc Mon Sep 17 00:00:00 2001 From: Alexey-Ayupov <116575425+Alexey-Ayupov@users.noreply.github.com> Date: Wed, 15 Nov 2023 18:36:30 +0100 Subject: [PATCH] [Windows] Update Windows Driver Kit version (#8792) --- images/windows/scripts/build/Install-WDK.ps1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/images/windows/scripts/build/Install-WDK.ps1 b/images/windows/scripts/build/Install-WDK.ps1 index 345bbe54..bd7114a6 100644 --- a/images/windows/scripts/build/Install-WDK.ps1 +++ b/images/windows/scripts/build/Install-WDK.ps1 @@ -6,9 +6,9 @@ # Requires Windows SDK with the same version number as the WDK if (Test-IsWin22) { # SDK available through Visual Studio - $wdkUrl = "https://go.microsoft.com/fwlink/?linkid=2196230" + $wdkUrl = "https://go.microsoft.com/fwlink/?linkid=2249371" $FilePath = "C:\Program Files (x86)\Windows Kits\10\Vsix\VS2022\*\WDK.vsix" - $wdkSignatureThumbprint = "DE2396BCEB7E3CD13BF3D370424A560F97CABDE7" + $wdkSignatureThumbprint = "7C94971221A799907BB45665663BBFD587BAC9F8" } elseif (Test-IsWin19) { $winSdkUrl = "https://go.microsoft.com/fwlink/?linkid=2173743" $wdkUrl = "https://go.microsoft.com/fwlink/?linkid=2166289"