Install-VBRvCDCDPFilter

Short Description

Installs Veeam I/O filter on organization VDCs.

Applies to

Product Edition: Enterprise, Enterprise Plus, Veeam Universal License

Syntax

Install-VBRvCDCDPFilter -OrganizationVdc <CVcdOrganizationVdcItem[]> [-Force] [-WhatIf] [-Confirm]  [<CommonParameters>]

Detailed Description

This cmdlet installs I/O filter on organization VDCs.

Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

OrganizationVdc

Specifies an array of cloud organization VDCs for which you want to install I/O filter.

Accepts the CVcdOrganizationVdcItem[] object. To get this object, run the Find-VBRvCloudEntity cmdlet.

True

Named

False

Force

Defines that the cmdlet will install I/O filter on VDC organizations without showing warnings in the PowerShell console.

SwitchParameter

False

Named

False

WhatIf

Defines that the cmdlet will write a message that describes the effects of running the cmdlet without actually performing any action.

SwitchParameter

False

Named

False

Confirm

Defines that the cmdlet will display a prompt that asks if you want to continue running the command.

SwitchParameter

False

Named

False

<CommonParameters>

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

Output Object

The cmdlet returns the CBaseSession object that defines installation session.

Examples

Installing I/O Filters on Organization VDCs

This example shows how to install I/O filter on organization VDCs.

$server = Get-VBRServer -Name "vCloud Server"

$organization = Find-VBRvCloudEntity -Server $server -OrganizationVdc

Install-VBRvCDCDPFilter -OrganizationVdc $organization[2]

Perform the following steps:

  1. Run the Get-VBRServer cmdlet. Specify the Name parameter value. Save the result to the $server variable.
  2. Run the Find-VBRvCloudEntity cmdlet. Specify the Server and OrganizationVdc parameters values. Save the result to the $organization variable.
  3. Run the Install-VBRvCDCDPFilter cmdlet. Set the $organization[2] variable as the OrganizationVdc parameter value.

Related Commands