From 242fa6f210bfa98b07ea298c14a7eac9f585c293 Mon Sep 17 00:00:00 2001 From: Chris Titus Tech Date: Mon, 6 Oct 2025 09:55:25 -0500 Subject: [PATCH] temp disable of offline for online users --- scripts/main.ps1 | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/scripts/main.ps1 b/scripts/main.ps1 index 13914e31..09b48b72 100644 --- a/scripts/main.ps1 +++ b/scripts/main.ps1 @@ -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