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 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