Stop-VBREntraIDTenantBackupJob
Short Description
Stops running backup jobs that protect Microsoft Entra ID tenants.
Product Edition: Standard, Enterprise, Enterprise Plus, Veeam Universal License
Syntax
|
Stop-VBREntraIDTenantBackupJob [-Job] <VBREntraIDTenantBackupJob[]> [-RunAsync] [-Gracefully] [-WhatIf] [-Confirm] [<CommonParameters>] |
Detailed Description
This cmdlet stops Entra ID tenant backup jobs.
Parameters
|
Parameter |
Description |
Type |
Required |
Position |
Accept Pipeline Input |
|---|---|---|---|---|---|
|
Gracefully |
Defines that the cmdlet will stop the job gracefully. |
|
False |
Named |
False |
|
Job |
Specifies an array of tenant backup jobs that you want to stop.
Accepts the |
True |
0 |
True (ByPropertyName, ByValue) |
|
|
RunAsync |
Defines that the command will return immediately without waiting for the task to complete. |
|
False |
Named |
False |
|
Confirm |
Defines that the cmdlet will display a prompt that asks if you want to continue running the command.
Note: Microsoft PowerShell enables the |
|
False |
Named |
False |
|
WhatIf |
Defines that the cmdlet will write a message that describes the effects of running the cmdlet without actually performing any action. |
|
False |
Named |
False |
<CommonParameters>
This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see Microsoft Docs.
Examples
Stopping Entra ID Tenant Backup Job
This example shows how to stop the Tenant Backup backup job.
|
$backupJob = Get-VBREntraIDTenantBackupJob -Name "Tenant Backup" Stop-VBREntraIDTenantBackupJob -Job $backupJob -Gracefully -RunAsync |
Perform the following steps:
- Run the
Get-VBREntraIDTenantBackupJobReturns backup jobs that protect Microsoft Entra ID tenants. cmdlet. Specify theNameparameter value. Save the result to the$backupJobvariable. - Run the
Stop-VBREntraIDTenantBackupJobcmdlet. Set the$backupJobvariable as theJobparameter value. Provide theGracefullyandRunAsyncparameters.
Related Commands
Get-VBREntraIDTenantBackupJobReturns backup jobs that protect Microsoft Entra ID tenants.