From 35b8d55d02dc42aab5fe192be3f3a05fdcd6e892 Mon Sep 17 00:00:00 2001 From: Shamil Mubarakshin <127750046+shamil-mubarakshin@users.noreply.github.com> Date: Sat, 21 Feb 2026 11:18:17 +0100 Subject: [PATCH] [windows] Add Visual Studio 2026 postGRO bootstrapper (#13711) --- images/windows/scripts/helpers/VisualStudioHelpers.ps1 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/images/windows/scripts/helpers/VisualStudioHelpers.ps1 b/images/windows/scripts/helpers/VisualStudioHelpers.ps1 index fba6e189f..db02591a7 100644 --- a/images/windows/scripts/helpers/VisualStudioHelpers.ps1 +++ b/images/windows/scripts/helpers/VisualStudioHelpers.ps1 @@ -35,10 +35,10 @@ Function Install-VisualStudio { [String] $ExtraArgs = "" ) - if (-not $env:INSTALL_VS_2026) { - $bootstrapperUrl = "https://aka.ms/vs/${Version}/postGRO-${Channel}/vs_${Edition}.exe" + if ($env:INSTALL_VS_2026) { + $bootstrapperUrl = "https://aka.ms/vs/postGRO-${Channel}/vs_${Edition}.exe" } else { - $bootstrapperUrl = "https://aka.ms/vs/${Version}/${Channel}/vs_${Edition}.exe" + $bootstrapperUrl = "https://aka.ms/vs/${Version}/postGRO-${Channel}/vs_${Edition}.exe" } $channelUri = "https://aka.ms/vs/${Version}/${Channel}/channel" $channelId = "VisualStudio.${Version}.Release"