Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit b9f3d1f

Browse files
Update tested versions
1 parent 27e64a7 commit b9f3d1f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

install.ps1

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -154,9 +154,9 @@ if (-not $noChecks.IsPresent) {
154154

155155
# Check if host has been tested
156156
$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
160160
Write-Host "`t[+] You are welcome to continue, but may experience errors downloading or installing packages" -ForegroundColor Yellow
161161
Write-Host "[-] Do you still wish to proceed? (Y/N): " -ForegroundColor Yellow -NoNewline
162162
$response = Read-Host

0 commit comments

Comments
 (0)