--- title: "Enable-VBRPluginJob" description: "Enables backup jobs that were created with standalone Veeam Plug-ins and backup copy jobs of backups created with Veeam Plug-ins." canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/enable-vbrpluginjob_standalone.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > Veeam Plug-Ins for Enterprise Applications, MongoDB Backup and Epic EHR System Protection > Working with Standalone Veeam Plug-Ins > Backup Jobs for Standalone Veeam Plug-Ins > Enable-VBRPluginJob" dateModified: "2026-08-19" --- # Enable-VBRPluginJob ## Short Description Enables backup jobs that were created with standalone Veeam Plug-ins and backup copy jobs of backups created with Veeam Plug-ins. **Product Edition**: Standard, Enterprise, Enterprise Plus, Veeam Universal License ## Syntax ``` Enable-VBRPluginJob [-Job] [] ``` ## Detailed Description This cmdlet enables backup jobs that were created with standalone Veeam Plug-ins and backup copy jobs of backups created with Veeam Plug-ins. Run the [`Disable-VBRPluginJob`](disable-vbrpluginjob.md) cmdlet to disable backup jobs that were created with standalone Veeam Plug-ins and backup copy jobs of backups created with Veeam Plug-ins. ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Job

Specifies an array of jobs. The cmdlet will enable these jobs.

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

VBRPluginJob[]

True

0

True (ByValue)

`` This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see [ Microsoft Docs](https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.core/about/about_commonparameters?view=powershell-7). ## Examples ::: example ### Enabling Backup Job Created with Standalone Veeam Plug-in This example shows how to enable backup jobs that were created with standalone Veeam Plug-ins and backup copy jobs of backups created with Veeam Plug-ins. ``` $job = Get-VBRPluginJob -Name "Plug-in backup 17" Enable-VBRPluginJob -Job $job ``` Perform the following steps: 1. Run the [`Get-VBRPluginJob`](get-vbrpluginjob.md) 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`](get-vbrpluginjob.md)