--- title: "Get-VBRLegacyBackupCopySourceJob" description: "This cmdlet returns legacy periodic backup copy job source objects." canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/get-vbrlegacybackupcopysourcejob.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > Backup Copy > Backup Copy Jobs for VMs and Physical Machines > Get-VBRLegacyBackupCopySourceJob" dateModified: "2026-08-19" --- # Get-VBRLegacyBackupCopySourceJob ## Short Description Returns legacy periodic backup copy job source objects. **Product Edition**: Standard, Enterprise, Enterprise Plus, Veeam Universal License ## Syntax ``` Get-VBRLegacyBackupCopySourceJob [-Job] [] ``` ## Detailed Description This cmdlet returns legacy periodic backup copy job source objects. ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Job

Specifies an array of jobs. The cmdlet will return source objects of these jobs.

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

CBackupJob

True

0

True (ByPropertyName, 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). ## Output Object The cmdlet returns the `CBackupJob` object that contains legacy periodic backup copy job source objects. ## Examples ::: example ### Getting Source Objects of Legacy Periodic Backup Copy Job This example shows how to get source objects of legacy periodic backup copy job named `LegacyPeriodicJob`. ``` $copyjob = Get-VBRJob -Name "LegacyPeriodicJob" Get-VBRLegacyBackupCopySourceJob -Job $copyjob ``` Perform the following steps: 1. Run the [`Get-VBRJob`](get-vbrjob.md) cmdlet. Specify the `Name` parameter value. Save the result to the `$copyjob` variable. 2. Run the `Get-VBRLegacyBackupCopySourceJob` cmdlet. Set the `$copyjob` variable as the `Job` parameter value. ::: ## Related Commands [`Get-VBRJob`](get-vbrjob.md)