This is an archive version of the document. To get the most up-to-date information, see the current version.

Disable-VBOJob

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 the Enable-VBOJob cmdlet.

Parameters

Parameter

Description

Required

Position

Accept Pipeline Input

Accept Wildcard Characters

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 on common parameters, see the About CommonParameters section of Microsoft Docs.

Examples

Example 1

This example shows how to disable a backup job.

  1. Run the Get-VBOJob cmdlet to get the backup job you want to disable. Save the result to the $job variable.
  2. Run the Disable-VBOJob cmdlet with the $job variable.

Get-VBOJob -Name "ABC Backup"

Disable-VBOJob -Job $job

Related Commands