From c18517d6295ceca929ca9f9b1dc93ff61c5bf3ce Mon Sep 17 00:00:00 2001 From: Daniel Westendorf Date: Sun, 14 Apr 2024 08:03:36 -0600 Subject: [PATCH] Log when network connectivity has been verified --- Powershell/InstallHuntress.powershellv2.ps1 | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Powershell/InstallHuntress.powershellv2.ps1 b/Powershell/InstallHuntress.powershellv2.ps1 index 12f0047..9565705 100644 --- a/Powershell/InstallHuntress.powershellv2.ps1 +++ b/Powershell/InstallHuntress.powershellv2.ps1 @@ -879,7 +879,9 @@ function logInfo { } $areURLsAvailable = testNetworkConnectivity - if ( ! $areURLsAvailable) { + if ( $areURLsAvailable) { + LogMessage "Network Connectivity ferified!" + } else { copyLogAndExit }