--- title: "Uninstall-VBRCDPFilter" description: "This cmdlet removes Veeam I/O filters from VMware clusters." canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/uninstall-vbrcdpfilter.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > Continuous Data Protection (CDP) > CDP I/O Filter Management > Uninstall-VBRCDPFilter" dateModified: "2026-08-19" --- # Uninstall-VBRCDPFilter ## Short Description Removes Veeam I/O filter from VMware clusters. **Product Edition**: Standard, Enterprise, Enterprise Plus, Veeam Universal License ## Syntax ``` Uninstall-VBRCDPFilter -CDPCluster [-Force] [] ``` ## Detailed Description This cmdlet removes Veeam I/O filters from VMware clusters. ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

CDPCluster

Specifies an array of VMware clusters from which you want to remove a Veeam I/O filter.

Accepts the CViClusterItem[] object. To get this object, run the Find-VBRViEntity cmdlet.

CViClusterItem[]

True

Named

False

Force

Defines that the cmdlet will remove Veeam I/O filters from VMware clusters without showing warnings in the PowerShell console.

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). ## Examples ::: example ### Removing Veeam I/O filters from VMware Clusters This example shows how to remove a Veeam I/O filter from the `CDPCluster` VMware cluster. The cmdlet will also remove the Veeam I/O filter from the `CDPCluster`. ``` $server = Get-VBRServer -Name "vCenterServer" $cluster = Find-VBRViEntity -Server $server -HostsAndClusters -Name "CDPCluster" Uninstall-VBRCDPFilter -CDPCluster $cluster ``` Perform the following steps: 1. Run the [`Get-VBRServer`](get-vbrserver.md) cmdlet. Specify the `Name` parameter value. Save the result to the `$server` variable. 2. Run the [`Find-VBRViEntity`](find-vbrvientity.md) cmdlet. Specify the `Server`, `HostsAndClusters` and `Name` parameters. Save the result to the `$cluster` variable. 3. Run the `Uninstall-VBRCDPFilter` cmdlet. Set the `$cluster` variable as the `CDPCluster` parameter value. ::: ## Related Commands - [`Get-VBRServer`](get-vbrserver.md) - [`Find-VBRViEntity`](find-vbrvientity.md)