PoshCode Archive  Artifact [3c95c4253f]

Artifact 3c95c4253f65834abb289932ecfa973bcfb922cd1abccd7b77d5d31a6403a1a3:

  • File Process-Count-CheckAlert.ps1 — part of check-in [53ae7a8884] at 2018-06-10 13:31:52 on branch trunk — PowerShell Script to verify Process Count Check & Email alert (user: Sankeerth Ankala size: 2960)

# encoding: ascii
# api: powershell
# title: Process Count CheckAlert
# description: PowerShell Script to verify Process Count Check & Email alert
# version: 1.6
# type: script
# author: Sankeerth Ankala
# license: CC0
# x-poshcode-id: 3831
# x-archived: 2012-12-22T08:41:52
# x-published: 2012-12-19T09:55:00
#
#
<#*****************************************************************************************************************
  *  PowerShell Script to verify Process Count Check & Email alert
  *****************************************************************************************************************
    
    Script for checking a Process Life Cycle using Windows PowerShell
    Step 1) This Script checks if the Processes are Running
    Step 2) If the Total Process Count is less than 10 (that's my threshold - 10) - It would send you an Email with link to Auto Fix.
    Step 3) If the Total Process Count is greater or equal to 10- It would send a OK Email - no Action required.
    Step 4) I also included $Process2 and it being live and embedded the OR operator to check if either of them fail to send a Email Alert
    Step 5) If you have qns please email info@sankeerth.net
    
    Variables: ABC = $Process name and XYZ = $Process2 name , SMTP and From and TO Addresses 
                     and create Report.html & Fail Report.html to Email the to address.
  ******************************************************************************************************************
  *                 Version 1.6                   
  ******************************************************************************************************************
  *
  *      Last Modified :    Modtime: 12/18/2012 11:25a 
  *           Revision :    1.6
  *                 By :    Author: Sankeerth Ankala
  ******************************************************************************************************************#>

$Process = GPS "ABC"
$Process
$Process.Count

$Process2 = GPS "XYZ"
$Process2.Count

if(($Process.Count -lt 10) -or ($Process2.Count -eq 0))
{
$smtpServer = "SMTP" 
$MailFrom = "fromemail@company.com"
$mailto = "toemail@company.com"
$msg = new-object Net.Mail.MailMessage  
$smtp = new-object Net.Mail.SmtpClient($smtpServer)  
$msg.From = $MailFrom 
$msg.IsBodyHTML = $true 
$msg.To.Add($Mailto)  
$msg.Subject = "iBills Status Check - Fail" 
$MailTextT =  Get-Content  -Path C:\temp\FailReport.html 
$msg.Body = $MailTextT 
$smtp.Send($msg) 
}

Else
{
$smtpServer = "SMTP" 
$MailFrom = "fromemail@company.com"
$mailto = "toemail@company.com"
$msg = new-object Net.Mail.MailMessage  
$smtp = new-object Net.Mail.SmtpClient($smtpServer)  
$msg.From = $MailFrom 
$msg.IsBodyHTML = $true 
$msg.To.Add($Mailto)  
$msg.Subject = "iBills Status Check - Success" 
$MailTextT =  Get-Content  -Path C:\temp\Report.html 
$msg.Body = $MailTextT 
$smtp.Send($msg) 
}