This is an archive version of the document. To get the most up-to-date information, see the current version.

Get-VBRRecoveryPointObjective

Short Description

Returns a schedule for a backup copy jobs that process backups stored on external repositories.

Applies to

Platform: VMware, Hyper-V

Product Edition: Community, Standard, Enterprise, Enterprise Plus

Syntax

Get-VBRRecoveryPointObjective -Job <CBackupJob>  [<CommonParameters>]

Detailed Description

Returns the VBRRecoveryPointObjective object. This object contains schedule settings backup copy jobs that process backups stored on external repositories.

Parameters

Parameter

Description

Required

Position

Accept
Pipeline
Input

Accept
Wildcard
Characters

Job

Specifies the backup copy job. The cmdlet will return schedule settings for the specified job.

Accepts the CBackupJob type.

True

Named

True (ByValue)

 

<CommonParameters>

This cmdlet supports Microsoft PowerShell common parameters. For more information about common parameters, see http://go.microsoft.com/fwlink/p/?LinkID=113216.

Return Type

Example

This example shows how to get schedule settings for a backup copy job.

  1. Run Get-VBRJob to get a backup copy job. Save the result to the $job variable.
  2. Run Get-VBRRecoveryPointObjective with the $job variable.

$job = Get-VBRJob -Name "EC2 BCJ 01"

Get-VBRRecoveryPointObjective -Job $job

Related Commands

Get-VBRJob