File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -154,9 +154,9 @@ if (-not $noChecks.IsPresent) {
154
154
155
155
# Check if host has been tested
156
156
$osVersion = (Get-WmiObject - class Win32_OperatingSystem).BuildNumber
157
- $validVersions = @ (17763 )
158
- if ($osVersion -notin $validVersions ) {
159
- Write-Host " `t [!] Windows version $osVersion has not been tested. Tested versions: $ ( $validVersions -join ' , ' ) " - ForegroundColor Yellow
157
+ $testedVersions = @ (17763 , 19042 )
158
+ if ($osVersion -notin $testedVersions ) {
159
+ Write-Host " `t [!] Windows version $osVersion has not been tested. Tested versions: $ ( $testedVersions -join ' , ' ) " - ForegroundColor Yellow
160
160
Write-Host " `t [+] You are welcome to continue, but may experience errors downloading or installing packages" - ForegroundColor Yellow
161
161
Write-Host " [-] Do you still wish to proceed? (Y/N): " - ForegroundColor Yellow - NoNewline
162
162
$response = Read-Host
You can’t perform that action at this time.
0 commit comments