Start-VBRvCDReplicaJob

Short Description

Starts vCD replication jobs.

Applies to

Product Edition: Standard, Enterprise, Enterprise Plus, Veeam Universal License

Syntax

Start-VBRvCDReplicaJob -Job <VBRvCDReplicaJob[]> [-RunAsync]  [<CommonParameters>]

Detailed Description

This cmdlet starts vCD replication jobs.

Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Job

Specifies an array of vCD replication jobs that you want to start.

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

True

Named

True (ByValue, ByPropertyName)

RunAsync

Defines that the command returns immediately without waiting for the task to complete.

SwitchParameter

False

Named

True (ByValue, ByPropertyName)

<CommonParameters>

This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see Microsoft Docs.

Output Object

None.

Examples

Starting vCD Replication Jobs

This example shows how to start all vCD replication jobs that are added to the backup infrastructure.

$replicavCD = Get-VBRvCDReplicaJob

Start-VBRvCDReplicaJob -Job $replicavCD

Perform the following steps:

  1. Run the Get-VBRvCDReplicaJob cmdlet. Save the result to the $replicavCD variable.
  2. Run the Start-VBRvCDReplicaJob cmdlet. Set the $replicavCD variable as the Job parameter value.

Related Commands

Get-VBRvCDReplicaJob