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] <CBackupJob> [<CommonParameters>] |
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 |
|
True |
0 |
True (ByPropertyName, ByValue) |
<CommonParameters>
This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see Microsoft Docs.
Output Object
The cmdlet returns the CBackupJob object that contains legacy periodic backup copy job source objects.
Examples
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:
- Run the
Get-VBRJobReturns existing jobs. cmdlet. Specify theNameparameter value. Save the result to the$copyjobvariable. - Run the
Get-VBRLegacyBackupCopySourceJobcmdlet. Set the$copyjobvariable as theJobparameter value.
Related Commands
Get-VBRJobReturns existing jobs.