--- title: "Install-VBRDiscoveredComputerCDPAgent" description: "Installs Veeam CDP Guest Service and Veeam CDP volume filter driver. Product Edition: Standard, Enterprise, Enterprise Plus, Veeam Universal License This cmdlet installs Veeam CDP Guest Service and Veeam CDP volume filter driver on the workloads that" canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/install-vbrdiscoveredcomputercdpagent.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > Continuous Data Protection (CDP) > CDP Guest Service Management > Install-VBRDiscoveredComputerCDPAgent" dateModified: "2026-08-19" --- # Install-VBRDiscoveredComputerCDPAgent ## Short Description Installs Veeam CDP Guest Service and Veeam CDP volume filter driver. **Product Edition**: Standard, Enterprise, Enterprise Plus, Veeam Universal License ## Syntax ``` Install-VBRDiscoveredComputerCDPAgent -DiscoveredComputer [-RunAsync] [-WhatIf] [-Confirm] [] ``` ## Detailed Description This cmdlet installs Veeam CDP Guest Service and Veeam CDP volume filter driver on the workloads that you plan to protect using universal CDP. ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

DiscoveredComputer

Specifies workloads in a protection group. The cmdlet will install the service and the driver on these workloads.

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

VBRDiscoveredComputer[]

True

Named

True (ByPropertyName, ByValue)

RunAsync

Defines that the command returns immediately without waiting for the task to complete.

SwitchParameter

False

Named

True (ByPropertyName)

Confirm

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

SwitchParameter

False

Named

False

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

`` 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 `VBRSession` object that defines options of the installation session. ## Examples ::: example ### Installing CDP Guest Service This example shows how to install Veeam CDP Guest Service and Veeam CDP volume filter driver on workloads in the `Protection Group CDP` protection group. ``` $group = Get-VBRProtectionGroup -Name "Protection Group CDP" $workload = Get-VBRDiscoveredComputer -ProtectionGroup $group Install-VBRDiscoveredComputerCDPAgent -DiscoveredComputer $workload ``` Perform the following steps: 1. Run the [`Get-VBRProtectionGroup`](get-vbrprotectiongroup.md) cmdlet. Specify the `Name` parameter value. Save the result to the `$group` variable. 2. Run the [`Get-VBRDiscoveredComputer`](get-vbrdiscoveredcomputer.md) cmdlet. Set the `$group` variable as the `ProtectionGroup` parameter value. Save the result to the `$workload` variable. 3. Run the `Install-VBRDiscoveredComputerCDPAgent` cmdlet. Set the `$workload` variable as the `DiscoveredComputer` parameter value. ::: ## Related Commands - [`Get-VBRProtectionGroup`](get-vbrprotectiongroup.md) - [`Get-VBRDiscoveredComputer`](get-vbrdiscoveredcomputer.md)