Uninstall-VBRDiscoveredComputerCDPAgent
Short Description
Removes Veeam CDP Guest Service and Veeam CDP volume filter driver.
Product Edition: Standard, Enterprise, Enterprise Plus, Veeam Universal License
Syntax
|
Uninstall-VBRDiscoveredComputerCDPAgent -DiscoveredComputer <VBRDiscoveredComputer[]> [-RunAsync] [-WhatIf] [-Confirm] [<CommonParameters>] |
Detailed Description
This cmdlet removes Veeam CDP Guest Service and Veeam CDP volume filter driver from the specified workloads.
Parameters
|
Parameter |
Description |
Type |
Required |
Position |
Accept Pipeline Input |
|---|---|---|---|---|---|
|
DiscoveredComputer |
Specifies workloads in a protection group. The cmdlet will remove the service and driver from these workloads.
Accepts the |
True |
Named |
True (ByPropertyName, ByValue) |
|
|
RunAsync |
Defines that the command returns immediately without waiting for the task to complete. |
|
False |
Named |
True (ByPropertyName) |
|
Confirm |
Defines that the cmdlet will display a prompt that asks if you want to continue running the command. |
|
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. |
|
False |
Named |
False |
<CommonParameters>
This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see Microsoft Docs.
Output Object
The cmdlet returns the VBRSession object that defines options of the removal session.
Examples
Uninstalling CDP Guest Service
This example shows how to remove Veeam CDP Guest Service and Veeam CDP volume filter driver from workloads in the Protection Group CDP protection group.
|
$group = Get-VBRProtectionGroup -Name "Protection Group CDP" $workload = Get-VBRDiscoveredComputer -ProtectionGroup $group Uninstall-VBRDiscoveredComputerCDPAgent -DiscoveredComputer $workload |
Perform the following steps:
- Run the
Get-VBRProtectionGroupReturns protection groups. cmdlet. Specify theNameparameter value. Save the result to the$groupvariable. - Run the
Get-VBRDiscoveredComputerReturns discovered computers. cmdlet. Set the$groupvariable as theProtectionGroupparameter value. Save the result to the$workloadvariable. - Run the
Uninstall-VBRDiscoveredComputerCDPAgentcmdlet. Set the$workloadvariable as theDiscoveredComputerparameter value.
Related Commands
Get-VBRProtectionGroupReturns protection groups.Get-VBRDiscoveredComputerReturns discovered computers.