Remove-VBREntraIDTenantBackupJob
Short Description
Removes backup jobs that protect Microsoft Entra ID tenants.
Applies to
Product Edition: Standard, Enterprise, Enterprise Plus, Veeam Universal License
Syntax
Remove-VBREntraIDTenantBackupJob -Job <VBREntraIDTenantBackupJob[]> [<CommonParameters>] |
Detailed Description
This cmdlet removes Entra ID tenant backup jobs.
Parameters
Parameter | Description | Type | Required | Position | Accept |
---|---|---|---|---|---|
Job | Specifies an array of tenant backup jobs that you want to remove. | Accepts the VBREntraIDTenantBackupJob[] object. To get this object, run the Get-VBREntraIDTenantBackupJob cmdlet. | True | Named | False |
<CommonParameters>
This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see Microsoft Docs.
Output Object
None.
Examples
This example shows how to remove the Tenant Backup backup job.
$backupJob = Get-VBREntraIDTenantBackupJob -Name "Tenant Backup" Remove-VBREntraIDTenantBackupJob -Job $backupJob |
Perform the following steps:
- Run the Get-VBREntraIDTenantBackupJob cmdlet. Specify the Name parameter value. Save the result to the $backupJob variable.
- Run the Remove-VBREntraIDTenantBackupJob cmdlet. Set the $backupJob variable as the Job parameter value.
Related Commands