--- title: "New-VBRvCDOrganizationvDCOptions" description: "This cmdlet creates a VBRvCDOrganizationvDCOptions object that contains settings for organization vDCs." canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/new-vbrvcdorganizationvdcoptions.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > Veeam Cloud Connect > Veeam Cloud Connect Replication Resources > New-VBRvCDOrganizationvDCOptions" dateModified: "2026-08-19" --- # New-VBRvCDOrganizationvDCOptions ## Short Description Creates organization vDCs settings. **Platform**: VMware **Product Edition**: Standard, Enterprise, Enterprise Plus, Veeam Universal License ## Syntax ``` New-VBRvCDOrganizationvDCOptions [-OrganizationvDC] [-EnableWanAccelerator] [-WanAccelerator ] [] ``` ## Detailed Description This cmdlet creates a `VBRvCDOrganizationvDCOptions` object that contains settings for organization vDCs. ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

EnableWanAccelerator

Enables the WAN accelerator option.

SwitchParameter

False

Named

False

OrganizationvDC

Specifies organization VDCs that you want to assign to the tenant. The specified organization VDCs will provide the resources for tenant VM replicas.

Accepts the CVcdOrganizationVdcItem object. To get this object, run the Find-VBRvCloudEntity cmdlet and provide the OrganizationVdc parameter.

CVcdOrganizationVdcItem

True

0

True (ByValue)

WanAccelerator

Specifies the target WAN accelerator that is configured at the SP side.

Accepts the CWanAccelerator object. To get this object, run the Get-VBRWANAccelerator cmdlet.

CWanAccelerator

False

Named

False

`` 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 `VBRvCDOrganizationvDCOptions` ## Examples ::: example ### Defining Settings for Organization VDC This example shows how to define settings for the organization VDC. ``` $orgvdc = Find-VBRvCloudEntity -OrganizationVdc -Name "VDC 01" New-VBRvCDOrganizationvDCOptions -OrganizationvDC $orgvdc ``` Perform the following steps: 1. Run the [`Find-VBRvCloudEntity`](find-vbrvcloudentity.md) cmdlet. Provide the `OrganizationVdc` parameter. Specify the `Name` parameter value. Save the result to the `$orgvdc` variable. 2. Run the `New-VBRvCDOrganizationvDCOptions` cmdlet. Set the `$orgvdc` variable as the `OrganizationvDC` parameter value. ::: ## Related Commands [`Find-VBRvCloudEntity`](find-vbrvcloudentity.md)