temp disable of offline for online users

This commit is contained in:
Chris Titus Tech
2025-10-06 09:55:25 -05:00
parent 634ef3266c
commit 242fa6f210

View File

@@ -311,8 +311,9 @@ $sync["Form"].Add_ContentRendered({
}
# Check internet connectivity and disable install tab if offline
$isOnline = Test-WinUtilInternetConnection
#$isOnline = Test-WinUtilInternetConnection
$isOnline = $true # Temporarily force online mode until we can resolve false negatives
if (-not $isOnline) {
# Disable the install tab
$sync.WPFTab1BT.IsEnabled = $false