PoshCode Archive  Artifact [2e1a0382d0]

Artifact 2e1a0382d0d40d1c51bfa3dcaf89d4050dcdc3a800f702d399634e2da47fe65b:

  • File Ping-Alert-Script.ps1 — part of check-in [011c810c95] at 2018-06-10 13:35:06 on branch trunk — Will alert on failed pings and again when recovered. (user: James size: 2541)

# encoding: ascii
# api: powershell
# title: Ping Alert Script
# description: Will alert on failed pings and again when recovered.
# version: 0.1
# author: James
# license: CC0
# x-poshcode-id: 4032
# x-archived: 2014-02-09T09:58:37
# x-published: 2014-03-19T11:35:00
#
# To be run on a scheduled task.
#
#Email Alert Parameters

$to = "user@mydomain.com"

$from = "unreachable@mydomain.com"

$smtpserver = "my_exchange_server"

 

#Array of computers to test

$Computers = ("comp1" , "comp2" , "comp3" , "comp4")

#Variable to hold INT value 0
$zero = 0

Foreach ($Computer in $Computers)

    {

    if

        (
#Checks for a file with the host computers name in the Reports folder and if it doesn't exist creates it with content 0
        Test-Path $("C:\Reports\" + $Computer + ".txt")

        )

        {

        }

        else

        {

        $zero > $("C:\Reports\" + $Computer + ".txt")

        }
#Reads the content of the file and saves to variable as text
    $FailedPings = Get-Content $("C:\Reports\" + $Computer + ".txt")
#Converts the value to INT
    $INT_FailedPings  = [INT]$FailedPings
#Actually runs the ping test
    $PingTest = Test-Connection -ComputerName $Computer -count 1

    if

        (
#If ping is unsuccessful 
        $PingTest.StatusCode -ne "0"

        )

        {

    if

        (
#If previous failed pings value is less or equal to 3
        $INT_FailedPings  -le 3

        )

        {
#Increment the value by 1
        $INT_FailedPings++
#Write the value out to the reports folder file for this host
        $INT_FailedPings  > $("C:\Reports\"  + $Computer  + ".txt")
#Send an alert of failed ping
        Send-MailMessage -to $to -subject "Warning, Host $Computer is down. You will only receive 4 of these messages!" -from $from  -body "Ping to $Computer failed, you will only receive 3 of these messages!" -smtpserver $smtpserver

        }

        }

   elseif

        (
#If previous checks have failed the value will be non zero, as checks are now working sets the value back to zero and alerts that host is back up
        $INT_FailedPings  -ne 0

        )

        {

        $zero > $("C:\Reports\" + $Computer + ".txt")

        Send-MailMessage -to $to -subject "Host $Computer is back up" -from $from  -body "Panic over"  -smtpserver $smtpserver

        }

    else
#If ping is successful and past pings were successful do nothing
        {

        }

    }