--- title: "Get-VBRvCDCloudvApp" description: "Returns VDC vApps. Platform: VMware Product Edition: Standard, Enterprise, Enterprise Plus, Veeam Universal License This cmdlet returns vApps that are added to Organization DCs. This cmdlet is available for tenants only." canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/get-vbrvcdcloudvapp.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > Veeam Cloud Connect > Cloud Director Cloud Replication Job > Get-VBRvCDCloudvApp" dateModified: "2026-08-19" --- # Get-VBRvCDCloudvApp ## Short Description Returns VDC vApps. **Platform**: VMware **Product Edition**: Standard, Enterprise, Enterprise Plus, Veeam Universal License ## Syntax ``` Get-VBRvCDCloudvApp [-Name ] -OrganizationvDC [] ``` ## Detailed Description This cmdlet returns vApps that are added to Organization DCs. ::: important This cmdlet is available for tenants only. ::: ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Name

Specifies the name of the cloud App that you want to get.

String[]

False

Named

True (ByPropertyName)

OrganizationvDC

Specifies an organization VDC. The cmdlet will return vApps for the specified organization VDC.

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

VBRvCDCloudOrganizationvDC

True

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 `VBRvCDCloudvApp` ## Examples ::: example ### Getting vApp Container This example shows how to get a vApp container. ``` $vdc = Get-VBRvCDCloudOrganizationvDC -Name "Organization VDC" $vApp = Get-VBRvCDCloudvApp -OrganizationvDC $vdc ``` Perform the following steps: 1. Run the [`Get-VBRvCDCloudOrganizationvDC`](get-vbrvcdcloudorganizationvdc.md) cmdlet. Specify the `Name` parameter value. Save the result to the `$vdc` variable. 2. Run the `Get-VBRvCDCloudvApp` cmdlet. Set the `$vdc` variable as `OrganizationvDC` parameter value. ::: ## Related Commands [`Get-VBRvCDCloudOrganizationvDC`](get-vbrvcdcloudorganizationvdc.md)