We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ca9c2c4 commit e363875Copy full SHA for e363875
install.ps1
@@ -230,8 +230,9 @@ function Test-WindowsVersion {
230
231
# 19045: https://www.microsoft.com/en-us/software-download/windows10ISO downloaded on April 25 2023.
232
# 20348: the version used by windows-2022 in GH actions
233
+# 26100: https://www.microsoft.com/en-us/software-download/windows11 downloaded on May 6 2025.
234
function Test-TestedOS {
- $testedVersions = @(19045, 20348)
235
+ $testedVersions = @(19045, 20348, 26100)
236
try {
237
$osVersion = (Get-CimInstance -class Win32_OperatingSystem).BuildNumber
238
if (-not ($osVersion -in $testedVersions)){
0 commit comments