--- title: "Get-VBRVCDOrgVdcNetworkInfo" description: "This cmdlet returns target networks for Cloud Director replica mapping." canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/get-vbrvcdorgvdcnetworkinfo.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > VMware Cloud Director > Replication for VMware Cloud Director > Cloud Director Replica Advanced Settings > Get-VBRVCDOrgVdcNetworkInfo" dateModified: "2026-08-19" --- # Get-VBRVCDOrgVdcNetworkInfo ## Short Description Returns target networks for Cloud Director replica mapping. **Product Edition**: Standard, Enterprise, Enterprise Plus, Veeam Universal License ## Syntax ``` Get-VBRVCDOrgVdcNetworkInfo [-Name ] [-Server ] [] ``` ## Detailed Description This cmdlet returns target networks for Cloud Director replica mapping. ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Name

Specifies an array of names for Cloud Director networks. The cmdlet will return these networks.

String[]

False

Named

False

Server

Specifies an array of Cloud Director hosts. The cmdlet will return networks that are available on these Cloud Director hosts.

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

CHost[]

False

Named

True (ByPropertyName, ByValue)

`` 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 The cmdlet returns the `VBRVCDOrgVdcNetworkInfo` object that networks for Cloud Director replica mapping. ## Examples ::: example ### Example 1. Getting all Cloud Director Replica Mapping Networks This example shows how to get all mapping networks that are available on the `Cloud Director` host. ``` $server = Get-VBRServer -Name vCloud Get-VBRVCDOrgVdcNetworkInfo -Server $server ``` Perform the following steps: 1. Run the [`Get-VBRServer`](get-vbrserver.md) cmdlet. Specify the `Name` parameter value. Save the result to the `$server` variable. 2. Run the `Get-VBRVCDOrgVdcNetworkInfo` cmdlet. Set the `$server` variable as the `Server` parameter value. ::: ::: example ### Example 2. Getting Cloud Director Replica Mapping Networks by Name This example shows how to get the `Net06`, `Net10`, `Net21` mapping networks that are available on the Cloud Director host. ``` $server = Get-VBRServer -Name vCloud Get-VBRVCDOrgVdcNetworkInfo -Server $server -Name "Net06", "Net10", "Net21" ``` Perform the following steps: 1. Run the [`Get-VBRServer`](get-vbrserver.md) cmdlet. Specify the `Name` parameter value. Save the result to the `$server` variable. 2. Run the `Get-VBRVCDOrgVdcNetworkInfo` cmdlet. Set the `$server` variable as the `Server` parameter value. Specify the `Name` parameter value. ::: ## Related Commands [`Get-VBRServer`](get-vbrserver.md)