Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions install.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -228,11 +228,11 @@ function Test-WindowsVersion {
}
}

# 17763: the version used by windows-2019 in GH actions
# 19045: https://www.microsoft.com/en-us/software-download/windows10ISO downloaded on April 25 2023.
# 20348: the version used by windows-2022 in GH actions
# 26100: https://www.microsoft.com/en-us/software-download/windows11 downloaded on May 6 2025.
function Test-TestedOS {
$testedVersions = @(17763, 19045, 20348)
$testedVersions = @(19045, 20348, 26100)
try {
$osVersion = (Get-CimInstance -class Win32_OperatingSystem).BuildNumber
if (-not ($osVersion -in $testedVersions)){
Expand Down