Remove-EAISdtOverride
Syntax
Section titled “Syntax”__AllParameterSets
Section titled “__AllParameterSets”Remove-EAISdtOverride [[-InputObject] <Object>] [[-InstanceId] <string>] [-WhatIf] [-Confirm] [<CommonParameters>]Description
Section titled “Description”Remove-EAISdtOverride deletes an override and restores the calculated instance behavior.
The DELETE path uses the canonical original instance identity (scheduleId:isoStartTime), not
the rescheduled newStartTime.
Pipe objects from Get-EAISdtInstance or from a schedule’s
overrides array returned by Get-EAISdt.
Examples
Section titled “Examples”EXAMPLE 1
Section titled “EXAMPLE 1”Remove-EAISdtOverride -InstanceId '97038d1b-648a-4718-b287-33726ed49624:2026-07-22T16:00:00.000Z'EXAMPLE 2
Section titled “EXAMPLE 2”Get-EAISdtInstance -ScheduleId $id | Where-Object { $_.instanceId -like '*2026-07-22T16:00:00.000Z*' } | Remove-EAISdtOverrideEXAMPLE 3
Section titled “EXAMPLE 3”# Remove one stored override (originalInstanceId.startTime may be epoch seconds from the API)(Get-EAISdt -Id $id).overrides | Select-Object -First 1 | Remove-EAISdtOverrideEXAMPLE 4
Section titled “EXAMPLE 4”# Preview removals before deleting orphaned overrides(Get-EAISdt -Id $id).overrides | Remove-EAISdtOverride -WhatIfParameters
Section titled “Parameters”-Confirm
Section titled “-Confirm”Prompts you for confirmation before running the cmdlet.
Type: System.Management.Automation.SwitchParameterDefaultValue: ''SupportsWildcards: falseAliases:- cfParameterSets:- Name: (All) Position: Named IsRequired: false ValueFromPipeline: false ValueFromPipelineByPropertyName: false ValueFromRemainingArguments: falseDontShow: falseAcceptedValues: []HelpMessage: ''-InputObject
Section titled “-InputObject”An Edwin.SDT.Instance, a schedule override object from Get-EAISdt, or any object with instanceId or originalInstanceId properties.
Type: System.ObjectDefaultValue: ''SupportsWildcards: falseAliases: []ParameterSets:- Name: (All) Position: 0 IsRequired: false ValueFromPipeline: true ValueFromPipelineByPropertyName: false ValueFromRemainingArguments: falseDontShow: falseAcceptedValues: []HelpMessage: ''-InstanceId
Section titled “-InstanceId”Instance ID in the format scheduleId:isoStartTime.
Type: System.StringDefaultValue: ''SupportsWildcards: falseAliases: []ParameterSets:- Name: (All) Position: 1 IsRequired: false ValueFromPipeline: false ValueFromPipelineByPropertyName: true ValueFromRemainingArguments: falseDontShow: falseAcceptedValues: []HelpMessage: ''-WhatIf
Section titled “-WhatIf”Runs the command in a mode that only reports what would happen without performing the actions.
Type: System.Management.Automation.SwitchParameterDefaultValue: ''SupportsWildcards: falseAliases:- wiParameterSets:- Name: (All) Position: Named IsRequired: false ValueFromPipeline: false ValueFromPipelineByPropertyName: false ValueFromRemainingArguments: falseDontShow: falseAcceptedValues: []HelpMessage: ''CommonParameters
Section titled “CommonParameters”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.