Failover Clustering and Network Load Balancing Team Blog
Many customers use the Windows Task Scheduler to perform regularly scheduled maintenance tasks on their servers, to run audit checks, generate reports, and even updating application data caches. A task in the Windows Task Scheduler performs an action when a given trigger (condition) has been met.
In previous releases of Windows Server, you could create a task that was local to a single node (server) that was part of a Failover Cluster, but the Task Scheduler did not have any understanding of the entire cluster. Configuring and managing tasks on a on a large scale 32 or 64 Node Cluster can be more challenging than maintaining them on a single machine. Manually copying tasks from one machine to another can become time consuming and error prone. In Windows Server 2012, this experience is significantly improved as you can now use Clustered Scheduled Tasks for the tasks that you want to run on your cluster. There are three types of Clustered Scheduled tasks:
Now let’s see how to configure and manage clustered tasks using PowerShell. There are four basic PowerShell commands available to configure, query or modify clustered tasks.
Cmdlet
Description
Get-ClusteredScheduledTask
Query cluster tasks.
Register-ClusteredScheduledTask
Register a cluster task.
Set-ClusteredScheduledTask
Update an already registered cluster task.
Unregister-ClusteredScheduledTask
Unregister a cluster task.
In Windows Server 2012, PowerShell commands from different modules are auto-loaded upon first use. It is important to note that the above PowerShell commands are available through TaskScheduler module. Notice that the cmdlets have the “Clustered” prefix as part of the noun in the cmdlet. If you try using the cmdlets without the clustered word in it you won’t be creating a clustered task, or querying the cluster for tasks – instead you’ll be using on a regular node (server) scoped task.
Need more information? Remember you can run any of the following from your PowerShell window:
In this first entry for clustered tasks we’ll show you how to create a Resource Specific task in 3 easy steps:
$action = New-ScheduledTaskAction – Execute C:\ClusterStorage\Volume1\myprogram.exe
This creates the action to be performed by my task. As you can see in the value for the Execute parameter my program is located on a Cluster Shared Volume (CSV) in my cluster which already makes it highly available to my cluster and accessible from all nodes.
$trigger = New-ScheduledTaskTrigger -At 13:00 –Daily
This creates the trigger that starts my task in the cluster. For this example I want to run my program every day at 13:00.
Register-ClusteredScheduledTask –Cluster MyCluster –TaskName MyResourceSpecificTask –TaskType ResourceSpecific –Resource MyResourceName –Action $action –Trigger $trigger
Register-ClusteredScheduledTask –Cluster MyCluster –TaskName MyAnyNodeTask –TaskType AnyNode –Action $action –Trigger $trigger
Register-ClusteredScheduledTask –Cluster MyCluster –TaskName MyClusterWideTask –TaskType ClusterWide –Action $action –Trigger $trigger
And you are done. Your cluster now has a task that will run daily at 13:00.
Once you have your tasks registered you still might want to query it and even unregister it. To do that you can do the following:
The Get-ClusteredScheduledTask allows you to query the tasks in the cluster in the following ways:
Get-ClusteredScheduledTask –Cluster MyCluster
Get-ClusteredScheduledTask –Cluster MyCluster –TaskType ResourceSpecific
Get-ClusteredScheduledTask –Cluster MyCluster –TaskName MyResourceSpecificTask
After a task is registered, its actions and triggers can be modified independently. In this case we want to update the trigger so that instead of executing at 13:00 it executes at 23:00 once everyone is out of the office.
$trigger = New-ScheduledTaskTrigger -At 23:00 - Daily
Set-ClusteredScheduledTask –Cluster MyCluster –TaskName MyResourceSpecificTask –Trigger $trigger
Similarly if you want to update the action you can create a new action and assign it to the task.
To see the current values of the action and triggers, you go into the ‘TaskDefinition’ of your task. This task definition contains the Triggers and Actions. This is an example of how to see the triggers, and the output for the task after we have updated the task.
(Get-ClusteredScheduledTask -TaskName MyResourceSpecificTask).TaskDefinition.Triggers
Enabled : True
EndBoundary :
ExecutionTimeLimit :
Id :
Repetition : MSFT_TaskRepetitionPattern
StartBoundary : 2012-05-15T23:00:00
RandomDelay : P0DT0H0M0S
PSComputerName :
The Unregister-ClusteredScheduledTask allows you to remove tasks by invoking the cmdlet indicating the cluster and the name of the task to be removed.
Unregister-ClusteredScheduledTask –Cluster MyCluster –TaskName MyResourceSpecificTask
While clustered scheduled tasks can only be managed through PowerShell, they also show up in the Task Scheduler UI under the Failover Clustering folder.
It can happen that the resource we selected for a ‘resource specific’ task gets removed from the cluster. In this case, the task will also be removed from the cluster.
No. As part of the process of evicting a node from the cluster, the tasks get deleted.
No. A task that has been registered cannot be converted from any node, cluster wide, or resource specific.
Yes. All the Cluster Tasks get created under path <PATH>. Thus, as long as your non-clustered tasks are under a different path you can always create them on individual cluster nodes. It is important to note that as part of the process of evicting a node from the cluster, all the tasks under the <PATH> would get cleaned up.
In Windows Server 2012, Clustered Scheduled Tasks can be created quickly and easily – they can be used to maintain the cluster, cluster resources such as disks, and even applications that are running on the cluster.
Ramón AlcántaraSoftware Development Engineer in TestClustering & High-AvailabilityMicrosoft
YES!!!!! Thanks!
This sounds like a great feature. But a question if I may. We are now creating scheduled tasks from a .NET application. Will there be, besides using powershell, an option to create clustered scheduled task from an application? If haven't been able to find any information about this...
Hi Nico,
We currently do not have published API's to manage creating clustered tasks. You could wrap on top of PowerShell and use it as a programmatic interface in your application.
Thanks!
Elden
hi,
i create a clustered task in powershell, but i can't see it in task schedule ui. what went wrong?
$A = New-ScheduledTaskAction -Execute "C:\Robocopy_backup.bat"
$T = New-ScheduledTaskTrigger -Daily -At 06:10PM
$T.RepetitionInterval = (New-TimeSpan -Hours 1)
$T.RepetitionDuration = (New-TimeSpan -Hours 12)
Register-ClusteredScheduledTask –Cluster clsAP –TaskName Robocopyto100 –TaskType ResourceSpecific –Resource Data –Action $A –Trigger $T -Description "Robocopy to 100"
i need your help, thanks.
Hi Joe,
You should be able to view the tasks created using Task Scheduler UI under this path:
Microsoft\Windows\Failover Clustering
It may take a few minutes for the task to show up in the UI.
Thanks,
Amitabh
Dear Amitabh:
thanks for your reply, i can see it now.
but i got another problem is the task can't set the RepetitionInterval and RepetitionDuration properly.
$T = New-ScheduledTaskTrigger -Once -At 08:10AM -RepetitionInterval (New-TimeSpan -Hours 1) -RepetitionDuration (New-TimeSpan -Hours 12)
can you tell me what went wrong? thanks
Joe