--- title: "Remove-VBRPluginJob" description: "Removes backup jobs that were created with standalone Veeam Plug-ins and backup copy jobs of backups created with Veeam Plug-ins from the Veeam Backup & Replication infrastructure." canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/remove-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 > Remove-VBRPluginJob" dateModified: "2026-08-19" --- # Remove-VBRPluginJob ## Short Description Removes backup jobs that were created with standalone Veeam Plug-ins and backup copy jobs of backups created with Veeam Plug-ins from the Veeam Backup & Replication infrastructure. **Product Edition**: Standard, Enterprise, Enterprise Plus, Veeam Universal License ## Syntax ``` Remove-VBRPluginJob [-Job] [-WhatIf] [-Confirm] [] ``` ## Detailed Description This cmdlet removes backup jobs that were created with standalone Veeam Plug-ins and backup copy jobs of backups created with Veeam Plug-ins from the Veeam Backup & Replication infrastructure. ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Job

Specifies an array of jobs. The cmdlet will remove these jobs from the Veeam Backup & Replication infrastructure.

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

VBRPluginJob[]

True

0

True (ByValue)

Confirm

Defines that the cmdlet will display a prompt that asks if the user is sure that he wants to continue.

Note: Microsoft PowerShell enables the Confirm parameter for this cmdlet by default. To disable this option, set the parameter value to $false. That is, Confirm:$false.

SwitchParameter

False

Named

False

WhatIf

Specifies a list of all jobs that will be deleted.

SwitchParameter

False

Named

False

`` 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 ### Removing Backup Job Created with Standalone Veeam Plug-in This example shows how to remove plug-in backup jobs and plug-in backup copy jobs from the Veeam Backup & Replication infrastructure. ``` $pluginjobs = Get-VBRPluginJob -Name "Plug-in backup 17" Remove-VBRPluginJob -Job $pluginjobs ``` Perform the following steps: 1. Run the [`Get-VBRPluginJob`](get-vbrpluginjob.md) cmdlet. Specify the `Name` parameter value. Save the result to the `$pluginjobs` variable. 2. Run the `Remove-VBRPluginJob` cmdlet. Set the `$pluginjobs` variable as the `Job` parameter value. ::: ## Related Commands [`Get-VBRPluginJob`](get-vbrpluginjob.md)