PowerShell Logo Small

Unregister-ClusteredScheduledTask



This is the built-in help made by Microsoft for the command 'Unregister-ClusteredScheduledTask', in PowerShell version 5 - as retrieved from Windows version 'Microsoft Windows Server 2012 R2 Standard' PowerShell help files on 2016-06-23.

For PowerShell version 3 and up, where you have Update-Help, this command was run just before creating the web pages from the help files.

SYNOPSIS

Removes a scheduled task from a failover cluster.

SYNTAX


Unregister-ClusteredScheduledTask [[-InputObject] <CimInstance>] [-AsJob] [-CimSession <CimSession[]>] [-ThrottleLimit <Int32>] [<CommonParameters>]
Unregister-ClusteredScheduledTask [-TaskName] <String> [[-Cluster] <String>] [-AsJob] [-CimSession <CimSession[]>] [-ThrottleLimit <Int32>] [<CommonParameters>]



Search powershellhelp.space

DESCRIPTION


The Unregister-ClusteredScheduledTask cmdlet removes a clustered scheduled task from all nodes of a failover cluster.


For more information about the Task Scheduler, see the Task Scheduler Overview topic in the TechNet Library at http://technet.microsoft.com/en-us/library/cc721871.aspx.



<

RELATED LINKS

Online Version: http://go.microsoft.com/fwlink/p/?linkid=287562
Get-ClusteredScheduledTask
Register-ClusteredScheduledTask
Set-ClusteredScheduledTask

REMARKS

<

Examples


Example 1: Unregister a task

PS C:\> Unregister-ClusteredScheduledTask -TaskName "Task01" -Cluster "Cluster07"



This command removes the task named Task01 from the cluster named Cluster07.