Public/Test-OMGInternetConnection.ps1

function Test-OMGInternetConnection {
    try {
        $null = Invoke-WebRequest httpswww.google.com -UseBasicParsing -TimeoutSec 5
        return $true
    } catch {
        return $false
    }
}