--- title: "Get-VBRCDPProxy" description: "Returns CDP proxies added to the backup infrastructure. Product Edition: Standard, Enterprise, Enterprise Plus, Veeam Universal License This cmdlet provides the following parameter sets: This cmdlet returns CDP proxies added to the backup infrastruct" canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/get-vbrcdpproxy.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > Continuous Data Protection (CDP) > CDP Proxy > Get-VBRCDPProxy" dateModified: "2026-08-19" --- # Get-VBRCDPProxy ## Short Description Returns CDP proxies added to the backup infrastructure. **Product Edition**: Standard, Enterprise, Enterprise Plus, Veeam Universal License ## Syntax This cmdlet provides the following parameter sets: ## Detailed Description This cmdlet returns CDP proxies added to the backup infrastructure. ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Id

Specifies an array of Ids for CDP proxies. The cmdlet will return a list of proxies with these names IDs.

Guid[]

False

Named

True (ByPropertyName, ByValue)

Name

Specifies an array of names for CDP proxies. The cmdlet will return a list of proxies with these names.

String[]

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 `VBRCDPProxy` object that contains CDP proxies to the backup infrastructure settings. ## Examples ::: example ### Example 1. Getting CDP Proxy by Name This command returns the `Proxy05` CDP Proxy. ``` Get-VBRCDPProxy -Name "Proxy05" ``` ::: ::: example ### Example 2. Getting CDP Proxy by ID This command returns the `d602b38b-fab6-4c4e-8066-a1bf16affa76` CDP Proxy. ``` Get-VBRCDPProxy -Id "d602b38b-fab6-4c4e-8066-a1bf16affa76" ``` :::