--- title: "Copy-VBRComputerBackupJob" description: "Clones Veeam Agent backup jobs and Veeam Agent backup policies. Product Edition: Enterprise, Enterprise Plus, Veeam Universal License This cmdlet clones Veeam Agent backup jobs and Veeam Agent backup policies." canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/copy-vbrcomputerbackupjob.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > Veeam Agent Management > Working with Veeam Agent Backup Jobs and Policies > Veeam Agent Management Backup Jobs > Copy-VBRComputerBackupJob" dateModified: "2026-08-19" --- # Copy-VBRComputerBackupJob ## Short Description Clones Veeam Agent backup jobs and Veeam Agent backup policies. **Product Edition**: Enterprise, Enterprise Plus, Veeam Universal License ## Syntax ``` Copy-VBRComputerBackupJob [-Job] [-Name ] [-Description ] [-Repository ] [] ``` ## Detailed Description This cmdlet clones Veeam Agent backup jobs and Veeam Agent backup policies. ::: important The job cloning functionality is available only in the Enterprise and Enterprise Plus, Veeam Universal License editions of Veeam Backup & Replication. ::: ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Description

Specifies a description of a cloned Veeam Agent backup job or a Veeam Agent backup policy.

String[]

False

Named

False

Job

Specifies a Veeam Agent backup job or a Veeam Agent backup policy that you want to clone.

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

VBRComputerBackupJob[]

True

0

True (ByPropertyName, ByValue)

Name

Specifies a name of a cloned Veeam Agent backup job or a Veeam Agent backup policy.

String[]

False

Named

False

Repository

Specifies a backup repository. The cmdlet will keep backups of a cloned Veeam Agent backup job or a Veeam Agent backup policy on this backup repository.

Accepts the CBackupRepository object. To get this object, run the Get-VBRBackupRepository cmdlet.

CBackupRepository

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). ## Output Object This cmdlet returns the `VBRComputerBackupJob` object that contains settings of cloned Veeam Agent backup jobs and of Veeam Agent backup policies. ## Examples ::: example ### Cloning Veeam Agent Backup Job This example shows how to clone the `WinSrv2049` Veeam Agent backup job. ``` $job = Get-VBRComputerBackupJob -Name "WinSrv2049" Copy-VBRComputerBackupJob -Job $job ``` Perform the following steps: 1. Run the [`Get-VBRComputerBackupJob`](get-vbrcomputerbackupjob.md) cmdlet. Specify the `Name` parameter value. Save the result to the `$job` variable. 2. Run the `Copy-VBRComputerBackupJob` cmdlet. Set the `$job` variable as the `Job` parameter value. ::: ## Related Commands [`Get-VBRComputerBackupJob`](get-vbrcomputerbackupjob.md)