Enable-VBRPluginJob

Short Description

Starts plug-in backup jobs and plug-in backup copy jobs.

Applies to

Product Edition: Standard, Enterprise, Enterprise Plus, Veeam Universal License

Syntax

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

Detailed Description

This cmdlet starts plug-in backup jobs and plug-in backup copy jobs.

Run the Disable-VBRPluginJob cmdlet to stop plug-in backup jobs and plug-in backup copy jobs.

Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Job

Specifies an array of plug-in backup jobs and plug-in backup copy jobs. The cmdlet will start these jobs.

Accepts the VBRPluginJob[] object. To get this object, run the Get-VBRPluginJob cmdlet.

True

0

True (ByValue)

<CommonParameters>

This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see Microsoft Docs.

Output Object

None.

Examples

Starting All Plug-in Backup Jobs and Plug-in Backup Copy Jobs

This example shows how to start plug-in backup jobs and plug-in backup copy jobs.

$job = Get-VBRPluginJob -Name "Plug-in backup 17"

Enable-VBRPluginJob -Job $job

Perform the following steps:

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

Related Commands

Get-VBRPluginJob