Short Description
Temporarily disables a backup job.
Syntax
Disable-VBOJob -Job <VBOJob> [<CommonParameters>] |
Detailed Description
This cmdlet temporarily disables the selected backup job. The job and its settings will remain in Veeam Backup for Microsoft Office 365. You can enable the job at any time by running Enable-VBOJob.
Parameters
Parameter | Description | Required | Position | Accept | Accept |
Job | Specifies the backup job you want to disable. | True | Named | True (ByValue) | 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 disable a backup job.
You will need to perform the following steps:
- Run Get-VBOJob to get the backup job you want to disable. Save the result to the $job variable.
- Run Disable-VBOJob with the $job variable.
PS C:\PS> Get-VBOJob -Name "ABC Backup" PS C:\PS> Disable-VBOJob -Job $job |
Related Commands