Skip to content

Set-EAISdtOverride

Terminal window
Set-EAISdtOverride -ScheduleId <string> -Override <Object[]> [-PassThru] [-WhatIf] [-Confirm]
[<CommonParameters>]
Terminal window
Set-EAISdtOverride -ScheduleId <string> -Clear [-PassThru] [-WhatIf] [-Confirm] [<CommonParameters>]

Set-EAISdtOverride replaces the entire overrides list on a schedule. Prefer New-EAISdtOverride and Remove-EAISdtOverride for single-instance changes.

Terminal window
Set-EAISdtOverride -ScheduleId $id -Clear
Terminal window
Set-EAISdtOverride -ScheduleId $id -Override @()
Terminal window
# Replace with a single skip override
Set-EAISdtOverride -ScheduleId $id -Override @(
@{
originalInstanceId = @{
scheduleId = $id
startTime = '2026-07-21T16:00:00.000Z'
}
status = 'SKIPPED'
summary = 'bulk skip'
}
)

Removes all overrides from the schedule.

Type: System.Management.Automation.SwitchParameter
DefaultValue: False
SupportsWildcards: false
Aliases: []
ParameterSets:
- Name: Clear
Position: Named
IsRequired: true
ValueFromPipeline: false
ValueFromPipelineByPropertyName: false
ValueFromRemainingArguments: false
DontShow: false
AcceptedValues: []
HelpMessage: ''

Prompts you for confirmation before running the cmdlet.

Type: System.Management.Automation.SwitchParameter
DefaultValue: ''
SupportsWildcards: false
Aliases:
- cf
ParameterSets:
- Name: (All)
Position: Named
IsRequired: false
ValueFromPipeline: false
ValueFromPipelineByPropertyName: false
ValueFromRemainingArguments: false
DontShow: false
AcceptedValues: []
HelpMessage: ''

One or more override objects to store on the schedule. Use with an empty array (@()) or -Clear to remove all overrides.

Type: System.Object[]
DefaultValue: ''
SupportsWildcards: false
Aliases: []
ParameterSets:
- Name: Replace
Position: Named
IsRequired: true
ValueFromPipeline: false
ValueFromPipelineByPropertyName: false
ValueFromRemainingArguments: false
DontShow: false
AcceptedValues: []
HelpMessage: ''

Re-fetches and returns the updated schedule.

Type: System.Management.Automation.SwitchParameter
DefaultValue: False
SupportsWildcards: false
Aliases: []
ParameterSets:
- Name: (All)
Position: Named
IsRequired: false
ValueFromPipeline: false
ValueFromPipelineByPropertyName: false
ValueFromRemainingArguments: false
DontShow: false
AcceptedValues: []
HelpMessage: ''

Schedule ID (UUID).

Type: System.String
DefaultValue: ''
SupportsWildcards: false
Aliases:
- Id
ParameterSets:
- Name: (All)
Position: Named
IsRequired: true
ValueFromPipeline: false
ValueFromPipelineByPropertyName: false
ValueFromRemainingArguments: false
DontShow: false
AcceptedValues: []
HelpMessage: ''

Runs the command in a mode that only reports what would happen without performing the actions.

Type: System.Management.Automation.SwitchParameter
DefaultValue: ''
SupportsWildcards: false
Aliases:
- wi
ParameterSets:
- Name: (All)
Position: Named
IsRequired: false
ValueFromPipeline: false
ValueFromPipelineByPropertyName: false
ValueFromRemainingArguments: false
DontShow: false
AcceptedValues: []
HelpMessage: ''

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutBuffer, -OutVariable, -PipelineVariable, -ProgressAction, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.