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

Enable-VBRSureBackupJob

Short Description

Enables stopped SureBackup jobs.

Applies to

Product Edition: Standard, Enterprise, Enterprise Plus

Syntax

Enable-VBRSureBackupJob -Job <VBRSureBackupJob>  [<CommonParameters>]

Detailed Description

This cmdlet disables running SureBackup jobs.

Run the Disable-VBRSureBackupJob cmdlet to disable SureBackup jobs.

Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Job

Specifies a SureBackup job. The cmdlet will enable this job.

Accepts the VBRSureBackupJob object. To create this object, run the Get-VBRSureBackupJob cmdlet.

True

Named

True (ByValue,
ByProperty
Name)

<CommonParameters>

This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see the About CommonParameters section of Microsoft Docs.

Examples

Enabling SureBackup Job

This example shows how to enable the Job01 SureBackup job.

$surejob = Get-VBRSureBackupJob -Name "Job01"

Enable-VBRSureBackupJob -Job $surejob

Perform the following steps:

  1. Run the Get-VBRSureBackupJob cmdlet. Specify the Name parameter value. Save the result to the $surejob variable.
  2. Run the Enable-VBRSureBackupJob cmdlet. Set the $surejob as the Job parameter value.

Related Commands

Get-VBRSureBackupJob