Changed connectivity check

pull/198/head
Romain 2022-10-21 13:31:35 +02:00 committed by GitHub
parent 130bbae78c
commit 8d3a6fd4cd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 3 deletions

View File

@ -8,10 +8,11 @@ function Test-Network {
#Test connectivity during 30 min then timeout
Write-Log "Checking internet connection..." "Yellow"
While ($timeout -lt 1800) {
$URLtoTest = "https://raw.githubusercontent.com/Romanitho/Winget-AutoUpdate/main/LICENSE"
$URLcontent = ((Invoke-WebRequest -URI $URLtoTest).content)
$TestNetwork = Test-NetConnection 8.8.8.8 -Port 443 -InformationLevel Quiet
if ($TestNetwork) {
if ($URLcontent -like "*MIT License*") {
Write-Log "Connected !" "Green"