90

I have an automated script that pulls backups from my website to my local computer. This script could fail; once my server was down, another time I accidentally moved my script.

How do I make Windows Task Scheduler tell me with the script fails (or doesn't run/not found)?

I don't care if a prompt comes up, an email or something that appears on my desktop. I want to be notified if something goes wrong. On my server, crontab emails me about errors - which is great. I want something like that on my windows 7 local computer.

4 Answers4

107

When a scheduled task fails to start, an event is written to the TaskScheduler event log:

Note: The Task Scheduler log is located at (under Administrative Tools)

 Computer Management
    System Tools
       Event Viewer
          Application and Services Logs
             Microsoft
                Windows
                   Task Scheduler
                      Operational

enter image description here

Windows lets you trigger scheduled tasks to start when a variety of events happen, e.g.:

  • time of day
  • system startup
  • user login
  • event recorded in event log

Armed with this knowledge, you can create a scheduled task that that runs when your scheduled task fails:

enter image description here

This scheduled task's action can then be set to something that sends you an alert - in your choice of methods (e.g. triggers a shutdown). You might just want it to send an e-mail:

enter image description here

This is how Windows handles everything. You can see many diagnostic tasks that trigger on an event appearing in the log. e.g. when an IP address conflict is detected, an event is written to the log:

  • Log: System
  • Source: Tcpip
  • Event ID: 4198

A scheduled task triggers on this event, and runs a program to tell you about it and to fix it. Keep in mind that the event id is not specific to just one task. Any task that generates the event 203 - Action failed to start, will trigger this task.

John M
  • 227
Ian Boyd
  • 23,066
25

Here is my script to alert me when my backup job has a greater value than 0.

$ScheduledTaskName = "Hans\Backup"
$Result = (schtasks /query /FO LIST /V /TN $ScheduledTaskName  | findstr "Result")
$Result = $Result.substring(12)
$Code = $Result.trim()

If ($Code -gt 0) {
    $User = "mymail@gmail.com"
    $Pass = ConvertTo-SecureString -String "myPassword" -AsPlainText -Force
    $Cred = New-Object System.Management.Automation.PSCredential $User, $Pass
################################################################################

$From = "Alert Scheduled Task <mymail@gmail.com>"
$To = "Me Gmail <mymail@gmail.com>"
$Subject = "Scheduled task 'Backup' failed"
$Body = "Error code: $Code"
$SMTPServer = "smtp.gmail.com"
$SMTPPort = "587"

Send-MailMessage -From $From -to $To -Subject $Subject `
-Body $Body -SmtpServer $SMTPServer -port $SMTPPort -UseSsl `
-Credential $Cred
}
Hans Falk
  • 251
7

Take a look at PushMon. You can create a PushMon URL that will be called at the end of your script. If your script doesn't run because the server was down or the script was moved, you will get notified. You can get notified by email, SMS, phone call, IM and Twitter. This will work for any operating system. This is like Pingdom but for scripts and background tasks.

4

Edit: review Ian Boyd's answer then when you get to using the Email Action, come back here.

Since Ian Boyd's original answer was posted, the Email Action in Task Scheduler was deprecated and eventually removed. But its not difficult to create a Powershell script that will send SMTP emails and run that instead. Here's an example using Powershell and system.net.mail.smtpClient:

$SmtpClient = new-object system.net.mail.smtpClient
$MailMessage = New-Object system.net.mail.mailmessage
$SmtpClient.Host = "mail.yourdomain.com"
$SmtpClient.Port = 587
#$SmtpClient.EnableSsl = $true
$SmtpClient.Credentials = New-Object System.Net.NetworkCredential( "support@yourdomain.com", "{pw}" );
$mailmessage.from = ("support@yourdomain.com")
$mailmessage.To.add("support@yourdomain.com")
$mailmessage.Subject = “Server Alert”
$mailmessage.Body = “Event 103 or 203 detected. This indicates a Scheduled Task has failed.”
$smtpclient.Send($mailmessage)

Edit the details as needed (such as "mail.yourdomain.com" and credentials "support@yourdomain.com" and "{pw}"). You might need to monkey with Port and EnableSsl.

Save this script as FailedTaskAlert.ps1 in a common folder, such as C:\Users\Public\Documents.

Now let's wire that up to a Task.

In Action tab use the Start a Program action. In Program, enter "powershell.exe" and in Add Arguments enter your ps1 file, such as "C:\Users\Public\Documents\FailedTaskAlert.ps1"

I see Hans Folk is also doing this using Send-MailMessage but I thought another cmdlet variation and an explicit explanation how the Powershell script can be wired to the Task's Action would be helpful to others.

Caveat: make sure that All Task History is enabled in the right hand Actions panel in Task Scheduler otherwise you won't get events logged. If you see the History tab with a "disabled" label, you know this feature is off.