Created
December 28, 2017 14:48
-
-
Save crshnbrn66/6b1dcda29f5463b90366c11afc257c6e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function Start-ConnectionMonitoring | |
{ | |
param($isp, $gateway, $Logfile,[int]$Delay = 10,[Ipaddress] $adapter, [switch]$ispPopup, [switch]$gateWayPopup) | |
$spacer = '--------------------------' | |
while($true) | |
{ | |
if(!(Test-Connection $gateway -source $adapter -count 1 -ea Ignore)) | |
{ | |
get-date | Add-Content -path $Logfile | |
"$gateWay Connection Failure" |add-content -Path $Logfile | |
$outagetime = Start-ContinousPing -address $gateway -adapter $adapter -Delay $Delay | |
"Total Outage time in Seconds: $outageTime" | Add-Content -path $Logfile | |
if($gateWayPopup) | |
{ | |
New-PopupMessage -location $gateway -outagetime $outagetime | |
} | |
$spacer |add-content -Path $Logfile | |
} | |
if((!(Test-Connection $isp -Source $adapter -count 1 -ea Ignore)) -and (Test-Connection $gateway -count 1 -ea Ignore)) | |
{ | |
get-date | Add-Content -path $Logfile | |
"$isp Connection Failure" | Add-Content -Path $Logfile | |
$outagetime = Start-ContinousPing -address $isp -adapter $adapter -Delay $Delay | |
"Total Outage time in Seconds: $outageTime" | Add-Content -path $Logfile | |
if($ispPopup) | |
{ | |
New-PopupMessage -location $isp -outagetime $outagetime | |
} | |
$spacer|add-content -Path $Logfile | |
} | |
Start-Sleep -Seconds $Delay | |
} | |
} | |
function Start-ContinousPing | |
{ | |
param($address,[ipaddress] $adapter, [int]$Delay = 10) | |
$currentTime = get-date | |
While(!(Test-Connection $address -Source $adapter -count 1 -ea Ignore)) | |
{ | |
Sleep -Seconds $Delay | |
} | |
$outageTime = ((get-date) - $currentTime).TotalSeconds | |
$outageTime | |
} | |
function New-PopupMessage | |
{ | |
param($location, $outagetime) | |
$Popup = New-Object -ComObject Wscript.Shell | |
$popup.popup("$location Failure - seconds: $outagetime ",0,"$location",0x1) | |
} | |
$Logfile = "c:\temp\connection.log" | |
$isp = 'www.cox.com' | |
if(!(test-path $Logfile)) | |
{ | |
new-item -Path $Logfile | |
} | |
$IP = (Get-NetIPConfiguration -InterfaceAlias 'YourAdapterName').ipv4address.ipaddress | |
$gateway = (Get-NetIPConfiguration).ipv4defaultGateway.nexthop | |
Start-ConnectionMonitoring -isp $isp -gateway $gateway -Logfile $Logfile -adapter $IP -ispPopup -gateWayPopup |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment