--- title: "Get-VBRCDPPolicy" description: "Returns CDP policies including Cloud Director CDP policies, CDP policies, cloud CDP policies and so on. Product Edition: Standard, Enterprise, Enterprise Plus, Veeam Universal License This cmdlet provides the following parameter sets: This cmdlet ret" canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/get-vbrcdppolicy.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > Continuous Data Protection (CDP) > CDP Policy Management > Get-VBRCDPPolicy" dateModified: "2026-08-19" --- # Get-VBRCDPPolicy ## Short Description Returns CDP policies including Cloud Director CDP policies, CDP policies, cloud CDP policies and so on. **Product Edition**: Standard, Enterprise, Enterprise Plus, Veeam Universal License ## Syntax This cmdlet provides the following parameter sets: ## Detailed Description This cmdlet returns CDP policies including Cloud Director CDP policies, CDP policies, cloud CDP policies, universal CDP policies and so on. ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Id

Specifies an array of IDs of policies. The cmdlet will return a list of policies with the specified IDs.

Guid[]

False

Named

True (ByPropertyName, ByValue)

Name

Specifies an array of names of policies. The cmdlet will return a list of policies 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 `VBRCDPPolicyBase[]` object that defines settings of CDP policies including Cloud Director CDP policies, CDP policies, cloud CDP policies and so on. ## Examples ::: example ### Example 1. Getting CDP Policy by Name This command returns the `VM079` CDP policy. ``` Get-VBRCDPPolicy -Name "VM079" ``` ::: ::: example ### Example 2. Getting CDP Policy by ID This command returns the `13744fce-e8ea-4b77-9092-26e3f09e6a6e` CDP policy. ``` Get-VBRCDPPolicy -Id "13744fce-e8ea-4b77-9092-26e3f09e6a6e" ``` ::: ::: example ### Example 3. Getting all CDP Policies This command returns all CDP policies that are created on the backup server. ``` Get-VBRCDPPolicy ``` :::