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 about common parameters, see http://go.microsoft.com/fwlink/p/?LinkID=113216.
Example
This example shows how to remove a backup job.
You will need to perform the following steps:
- 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.
PS C:\PS> Get-VBOJob -Name "ABC Backup" PS C:\PS> Remove-VBOJob -Job $job |
Related Commands