From 5e3ab5378139eb0cddb15bf7362f01c6484aed06 Mon Sep 17 00:00:00 2001 From: Shawn Meyer Date: Tue, 28 Jul 2026 07:19:58 -0400 Subject: [PATCH 1/2] fix: update AVD agent and bootloader download URLs to stable fwlinks Replace legacy query.prod.cms.rt.microsoft.com URLs with stable go.microsoft.com fwlink redirects for the AVD Agent and Bootloader MSI installers in Set-SessionHostConfiguration.ps1. --- workload/scripts/Set-SessionHostConfiguration.ps1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/workload/scripts/Set-SessionHostConfiguration.ps1 b/workload/scripts/Set-SessionHostConfiguration.ps1 index b77b6c8cf..00ff55e7f 100644 --- a/workload/scripts/Set-SessionHostConfiguration.ps1 +++ b/workload/scripts/Set-SessionHostConfiguration.ps1 @@ -485,13 +485,13 @@ try { # Install the AVD Agent ############################################################## $BootInstaller = 'AVD-Bootloader.msi' - Get-WebFile -FileName $BootInstaller -URL 'https://query.prod.cms.rt.microsoft.com/cms/api/am/binary/RWrxrH' + Get-WebFile -FileName $BootInstaller -URL 'https://go.microsoft.com/fwlink/?linkid=2311028' Start-Process -FilePath 'msiexec.exe' -ArgumentList "/i $BootInstaller /quiet /qn /norestart /passive" -Wait -Passthru Write-Log -Message 'Installed AVD Bootloader' -Category 'Info' Start-Sleep -Seconds 5 $AgentInstaller = 'AVD-Agent.msi' - Get-WebFile -FileName $AgentInstaller -URL 'https://query.prod.cms.rt.microsoft.com/cms/api/am/binary/RWrmXv' + Get-WebFile -FileName $AgentInstaller -URL 'https://go.microsoft.com/fwlink/?linkid=2310011' Start-Process -FilePath 'msiexec.exe' -ArgumentList "/i $AgentInstaller /quiet /qn /norestart /passive REGISTRATIONTOKEN=$HostPoolRegistrationToken" -Wait -PassThru Write-Log -Message 'Installed AVD Agent' -Category 'Info' Start-Sleep -Seconds 5 From 9a096fc9b4bf74e15a7b066258d4a47ad3bf8bd7 Mon Sep 17 00:00:00 2001 From: Jason Masten Date: Wed, 5 Aug 2026 17:30:57 -0400 Subject: [PATCH 2/2] Fix casing for Ubuntu version in workflow --- .github/workflows/devskim.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/devskim.yml b/.github/workflows/devskim.yml index 7db608c72..59664082c 100644 --- a/.github/workflows/devskim.yml +++ b/.github/workflows/devskim.yml @@ -19,7 +19,7 @@ permissions: jobs: lint: name: DevSkim - runs-on: Ubuntu 22.04 + runs-on: ubuntu-22.04 permissions: actions: read contents: read