--- title: "Get-VBRBackupCopyJob" description: "Returns backup copy jobs. Product Edition: Standard, Enterprise, Enterprise Plus, Veeam Universal License This cmdlet provides the following parameter sets: This cmdlet returns backup copy jobs." canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/get-vbrbackupcopyjob.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > Backup Copy > Backup Copy Jobs for VMs and Physical Machines > Get-VBRBackupCopyJob" dateModified: "2026-08-19" --- # Get-VBRBackupCopyJob ## Short Description Returns backup copy jobs. **Product Edition**: Standard, Enterprise, Enterprise Plus, Veeam Universal License ## Syntax This cmdlet provides the following parameter sets: ## Detailed Description This cmdlet returns backup copy jobs. ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Id

Specifies an array of IDs for backup copy jobs. The cmdlet will return jobs with these IDs.

Guid[]

False

Named

False

Name

Specifies an array of names for backup copy jobs. The cmdlet will return jobs with these names.

String[]

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 The cmdlet returns the `VBRBackupCopyJob` object that contains settings of backup copy jobs. ## Examples ::: example ### Example 1. Getting All Backup Copy Jobs This command returns all backup copy jobs. ``` Get-VBRBackupCopyJob ``` ::: ::: example ### Example 2. Getting Backup Copy Job by Name This command returns the `Copy Job05` backup copy job. ``` Get-VBRBackupCopyJob -Name "Copy Job05" ``` ::: ::: example ### Example 3. Getting Backup Copy Job by ID This command returns the `c4bb4625-7158-43d7-ab63-beaee75d2cff` backup copy job. ``` Get-VBRBackupCopyJob -Id "c4bb4625-7158-43d7-ab63-beaee75d2cff" ``` :::