< Back

Stop-AzureBatchTask

Tue Jan 29, 2019 9:36 pm

NAME Stop-AzureBatchTask



SYNOPSIS

Stops a Batch task.





SYNTAX

Stop-AzureBatchTask [-JobId] <String> [-Id] <String> -BatchContext <BatchAccountContext> [-DefaultProfile <IAzureContextContainer>]

[<CommonParameters>]



Stop-AzureBatchTask [-Task] <PSCloudTask> -BatchContext <BatchAccountContext> [-DefaultProfile <IAzureContextContainer>] [<CommonParameters>]





DESCRIPTION

The Stop-AzureBatchTask cmdlet stops an Azure Batch task.





PARAMETERS

-BatchContext <BatchAccountContext>

Specifies the BatchAccountContext instance that this cmdlet uses to interact with the Batch service. If you use the Get-AzureRmBatchAccount

cmdlet to get your BatchAccountContext, then Azure Active Directory authentication will be used when interacting with the Batch service. To

use shared key authentication instead, use the Get-AzureRmBatchAccountKeys cmdlet to get a BatchAccountContext object with its access keys

populated. When using shared key authentication, the primary access key is used by default. To change the key to use, set the

BatchAccountContext.KeyInUse property.



Required? true

Position? named

Default value None

Accept pipeline input? True (ByValue)

Accept wildcard characters? false



-DefaultProfile <IAzureContextContainer>

The credentials, account, tenant, and subscription used for communication with azure.



Required? false

Position? named

Default value None

Accept pipeline input? False

Accept wildcard characters? false



-Id <String>

Specifies the ID of the task that this cmdlet stops.



Required? true

Position? 1

Default value None

Accept pipeline input? True (ByPropertyName)

Accept wildcard characters? false



-JobId <String>

Specifies the ID of the job that contains the task.



Required? true

Position? 0

Default value None

Accept pipeline input? True (ByPropertyName)

Accept wildcard characters? false



-Task <PSCloudTask>

Specifies the task that this cmdlet stops. To obtain a PSCloudTask object, use the Get-AzureBatchTask cmdlet.



Required? true

Position? 0

Default value None

Accept pipeline input? True (ByValue)

Accept wildcard characters? false



<CommonParameters>

This cmdlet supports the common parameters: Verbose, Debug,

ErrorAction, ErrorVariable, WarningAction, WarningVariable,

OutBuffer, PipelineVariable, and OutVariable. For more information, see

about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).



INPUTS

BatchAccountContext

Parameter 'BatchContext' accepts value of type 'BatchAccountContext' from the pipeline



PSCloudTask

Parameter 'Task' accepts value of type 'PSCloudTask' from the pipeline





OUTPUTS



NOTES









Example 1: Delete a Batch task by ID



PS C:\\>Stop-AzureBatchTask -JobId "Job-000001" -Id "Task23" -BatchContext $Context



This command stops a task that has the ID Task23 under the job that has the ID Job-000001. The command prompts you for confirmation. Use the

Get-AzureRmBatchAccountKeys cmdlet to assign a context to the $Context variable.





Example 2: Stop a Batch task by using the pipeline



PS C:\\>Get-AzureBatchTask -JobId "Job-000001" -Id "Task26" -BatchContext $Context | Stop-AzureBatchTask -BatchContext $Context



This command gets the Batch task that has the ID Task26 in the job that has the ID Job-000001 by using the Get-AzureBatchTask cmdlet. The command

passes that task to the current cmdlet by using the pipeline operator. The command stops that task.







RELATED LINKS

Online Version: https://docs.microsoft.com/en-us/powers ... ebatchtask

Get-AzureBatchTask

New-AzureBatchTask

Remove-AzureBatchTask

Azure Batch Cmdlets