This is an archive version of the document. To get the most up-to-date information, see the current version.

Disable-VBRCDPPolicy

Short Description

Disables CDP policies.

Applies to

Product Edition: Standard, Enterprise, Enterprise Plus, Veeam Universal License

Syntax

Disable-VBRCDPPolicy -Policy <VBRCDPPolicy[]> [-WhatIf] [-Confirm]  [<CommonParameters>]

Detailed Description

This cmdlet disables CDP policies.

Run the Enable-VBRCDPPolicy cmdlet to enable CDP policies.

Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Policy

Specifies an array of CDP policies.The cmdlet will disable these policies.

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

True

Named

True (ByValue, ByPropertyName)

WhatIf

Defines that the cmdlet will write a message that describes the effects of running the cmdlet without actually performing any action.

SwitchParameter

False

Named

False

Confirm

Defines that the cmdlet will display a prompt that asks if you want to continue running the command.

SwitchParameter

False

Named

False

<CommonParameters>

This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see the About CommonParameters section of Microsoft Docs.

Output Object

None.

Examples

Disabling CDP Policies

This example shows how to disable CDP policies.

$policy = Get-VBRCDPPolicy

Disable-VBRCDPPolicy -Policy $policy

Perform the following steps:

  1. Run the Get-VBRCDPPolicy cmdlet. Save the result to the $policy variable.
  2. Run the Disable-VBRCDPPolicy cmdlet. Set the $policy variable as the Policy parameter value.

Related Commands

Get-VBRCDPPolicy