--- title: "Remove-VBRVMExclusion" description: "This cmdlet removes global exclusions." canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/remove-vbrvmexclusion.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > Backup Infrastructure > Global VM Exclusion > Remove-VBRVMExclusion" dateModified: "2026-08-19" --- # Remove-VBRVMExclusion ## Short Description Removes global VM exclusions. **Product Edition**: Standard, Enterprise, Enterprise Plus, Veeam Universal License ## Syntax ``` Remove-VBRVMExclusion [-Exclusion] [] ``` ## Detailed Description This cmdlet removes global exclusions. ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Exclusion

Specifies global VM exclusions that you want to remove.

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

VBRVMExclusion[]

True

0

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). ## Examples ::: example ### Removing Global VM Exclusion This example shows how to add a note to the exclusion for the `ubuntusrv20` VM. ``` $excl = Get-VBRVMExclusion -Name "ubuntusrv20" Remove-VBRVMExclusion -Exclusion $excl ``` Perform the following steps: 1. Run the [`Get-VBRVMExclusion`](get-vbrvmexclusion.md) cmdlet. Specify the `Name` parameter value. Save the result to the `$excl` variable. 2. Run the `Set-VBRVMExclusion` cmdlet. Set the `$excl` variable as the `Exclusion` parameter value. ::: ## Related Commands [`Get-VBRVMExclusion`](get-vbrvmexclusion.md)