Remove-VBOJob
Short Description
Removes a backup job.
Syntax
Remove-VBOJob -Job <VBOJob> [-WhatIf [<SwitchParameter>]] [-Confirm [<SwitchParameter>]] [<CommonParameters>] |
Detailed Description
This cmdlet removes a selected backup job from Veeam Backup for Microsoft Office 365.
Parameters
Parameter | Description | Required | Position | Accept | Accept |
Job | Specifies the backup job you want to remove. | True | Named | True (ByValue) | False |
WhatIf | Specifies whether the cmdlet writes a message that describes the effects of running the cmdlet without actually performing any action. | False | Named | False | False |
Confirm | Specifies whether the cmdlet displays a prompt that asks if the user is sure that they want to continue. | False | Named | False | False |
<CommonParameters>
This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see Microsoft Docs.
Example
This example shows how to remove a backup job.
- Run Get-VBOJob to get the backup job you want to remove. Save the result to the $job variable.
- Run Remove-VBOJob with the $job variable.
Get-VBOJob -Name "ABC Backup" Remove-VBOJob -Job $job |
Related Commands