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