Powershell Script to Check if a Website is Up and if Not Restart a service

  • Post by Mike Dixson
  • Oct 05, 2015
post-thumb

The below PowerShell script check the website is responding AND doesn’t returns a certain string, if either test is failed then a Windows service is restarted, forcefully if necessary after a grace period.

Please note that I have modified this script to make it more easily customisable and not had the opportunity to test with the strings switched out for the variables. The logic is sound and works.

Also note that this is one code block (word press isn’t a fan of it being one though :-/
You can download the file here CheckWebsiteIsUp.ps1

$webClient = new-object System.Net.WebClient<br /> $webClient.Headers.Add("user-agent", "PowerShell Script")

<br /> #Initialising<br /> $webClient = new-object System.Net.WebClient<br /> $webClient.Headers.Add("user-agent", "PowerShell Script")

#Variables to modify<br /> $output = "" #Define output variable<br /> $serviceName = "confluence" #Short windows service name<br /> $smtpServerName = "smtp.website.com" #SMTP Server name<br /> $fromEmailAddress = "servername@website.com" #Email address for mail to come from/reply address<br /> $stringToCheckFor = "The service is unavailable" #String to check for. Note that this will be searched for with wildcards either side<br /> $startTime = get-date<br /> $output = $webClient.DownloadString("http://www.website.com/") #Modify this url to be the url you want to test<br /> $endTime = get-date

#Main workload<br /> #The below checks for the string "The service is unavailable" from your website and if found forcefully restarts the defined service<br /> if ($output -And $output -notlike "*$stringToCheckFor*") {<br /> "Site Up`t`t" + $startTime.DateTime + "`t`t" + ($endTime - $startTime).TotalSeconds + " seconds"<br /> } else {<br /> "Fail`t`t" + $startTime.DateTime + "`t`t" + ($endTime - $startTime).TotalSeconds + " seconds"<br /> stop-service $serviceName -force<br /> "Stop Service Command Sent"<br /> $svc = Get-Service $serviceName<br /> $svc.WaitForStatus('Stopped','00:05:00') #Waits for service to enter stopped state or 5 mins has passed, whichever is first<br /> get-service $serviceName | where-object {$_.Status -eq "Stopped"} | restart-service #Belt and braces but only restarts the service if it's stopped.<br /> $svc.WaitForStatus('Running','00:01:00') #Waits for service to enter Running state or 1 minute to pass, whichever is first<br /> Send-MailMessage -From “intranet@rave.ac.uk” -To “$fromEmailAddress” -SmtpServer “$smtpServerName” -Subject "$serviceName Service Restarted" -Body "$serviceName Service Restarted" #Sends an email alert that the service was restarted<br /> }

LATEST POST
  • Post By Mike Dixson
  • Nov 17, 2020
Using MFA for Sudo Only
  • Post By Mike Dixson
  • Jul 25, 2020
Fixed: Obelisk not working in Ableton Live
  • Post By Mike Dixson
  • Jul 20, 2020
Musical Instrument Frequency Range Chart
TAG