forked from Badgerati/Pode
-
Notifications
You must be signed in to change notification settings - Fork 0
Restart PodeTaskProcess
mdaneri edited this page Mar 10, 2025
·
1 revision
Restart a Task process which has failed.
Restart-PodeTaskProcess [-Process] <Hashtable> [-Timeout <Int32>] [-Wait] [-ProgressAction <ActionPreference>]
[<CommonParameters>]
Restart a Task process which has failed.
$task = Invoke-PodeTask -Name 'Example1' -Wait
if (Test-PodeTaskFailed -Process $task) {
Restart-PodeTaskProcess -Process $task
}
Get-PodeTaskProcess -State 'Failed' | ForEach-Object { Restart-PodeTaskProcess -Process $_ }
The Task process to be restarted. The process returned by either Invoke-PodeTask or Get-PodeTaskProcess.
Type: Hashtable
Parameter Sets: (All)
Aliases: Task
Required: True
Position: 1
Default value: None
Accept pipeline input: True (ByValue)
Accept wildcard characters: False
{{ Fill ProgressAction Description }}
Type: ActionPreference
Parameter Sets: (All)
Aliases: proga
Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
A Timeout, in seconds, to abort running the Task process. (Default: -1 [never timeout])
Type: Int32
Parameter Sets: (All)
Aliases:
Required: False
Position: Named
Default value: -1
Accept pipeline input: False
Accept wildcard characters: False
If supplied, Pode will wait until the Task process has finished
Type: SwitchParameter
Parameter Sets: (All)
Aliases:
Required: False
Position: Named
Default value: False
Accept pipeline input: False
Accept wildcard characters: False
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.
sss
x