Unregister-AzureAutomationScheduledRunbook
Removes an association between a runbook and a schedule.
Syntax
Unregister-AzureAutomationScheduledRunbook
-AutomationAccountName <String>
[-Force]
-JobScheduleId <Guid>
[-Profile <AzureSMProfile>]
[<CommonParameters>]
Unregister-AzureAutomationScheduledRunbook
-AutomationAccountName <String>
[-Force]
[-Profile <AzureSMProfile>]
-RunbookName <String>
-ScheduleName <String>
[<CommonParameters>]
Description
The Unregister-AzureAutomationScheduledRunbook cmdlet removes the association between a Microsoft Azure Automation runbook and a schedule, which stops the runbook from starting when the schedule fires.
Examples
Example 1: Remove the association between a runbook and a schedule
PS C:\> Unregister-AzureAutomationScheduledRunbook -AutomationAccountName "Contoso17" -Name "Runbk01" -ScheduleName "Runbk01Sched"
This command removes the association between the runbook named Runbk01 and the schedule named Runbk01Sched.
Required Parameters
-AutomationAccountName
Specifies the name of an Automation account.
| Type: | String |
| Position: | Named |
| Default value: | None |
| Accept pipeline input: | True (ByPropertyName) |
| Accept wildcard characters: | False |
-JobScheduleId
Specifies the ID of a scheduled runbook.
| Type: | Guid |
| Position: | Named |
| Default value: | None |
| Accept pipeline input: | True (ByPropertyName) |
| Accept wildcard characters: | False |
-RunbookName
Specifies the name of a runbook.
| Type: | String |
| Aliases: | Name |
| Position: | Named |
| Default value: | None |
| Accept pipeline input: | True (ByPropertyName) |
| Accept wildcard characters: | False |
-ScheduleName
Specifies the name of a schedule.
| Type: | String |
| Position: | Named |
| Default value: | None |
| Accept pipeline input: | True (ByPropertyName) |
| Accept wildcard characters: | False |
Optional Parameters
-Force
Forces the command to run without asking for user confirmation.
| Type: | SwitchParameter |
| Position: | Named |
| Default value: | None |
| Accept pipeline input: | False |
| Accept wildcard characters: | False |
-Profile
Specifies the Azure profile from which this cmdlet reads. If you do not specify a profile, this cmdlet reads from the local default profile.
| Type: | AzureSMProfile |
| Position: | Named |
| Default value: | None |
| Accept pipeline input: | False |
| Accept wildcard characters: | False |