--- title: "Add-VBRVMExclusion" description: "This cmdlet adds VMs to global VM exclusions. Veeam Backup & Replication stops processing such VMs even if they are included in jobs. Global VM exclusion applies only to jobs where the sources are production VMs." canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/add-vbrvmexclusion.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > Backup Infrastructure > Global VM Exclusion > Add-VBRVMExclusion" dateModified: "2026-08-20" --- # Add-VBRVMExclusion ## Short Description Adds VMs to global VM exclusions. **Product Edition**: Standard, Enterprise, Enterprise Plus, Veeam Universal License ## Syntax ``` Add-VBRVMExclusion [-Entity] [-Note ] [] ``` ## Detailed Description This cmdlet adds VMs to global VM exclusions. Veeam Backup & Replication stops processing such VMs even if they are included in jobs. ::: note Global VM exclusion applies only to jobs where the sources are production VMs. ::: ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Entity

Specifies the VMs which you want to exclude from processing.

Accepts the Object[] object. To get this object, run the following cmdlets:

Object[]

True

0

True (ByPropertyName, ByValue)

Note

Specifies a note why the VM is excluded from processing.

String

False

Named

True (ByPropertyName)

`` 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 `VBRVMExclusion[]` object that defines the exclusions. ## Examples ::: example ### Excluding VMware vSphere VM from Processing This example shows how to exclude the `ubuntu88` VMware vSphere VM from processing. ``` $vm = Find-VBRViEntity -VMsAndTemplates -Name "ubuntu88" Add-VBRVMExclusion -Entity $vm ``` Perform the following steps: 1. Run the [`Find-VBRViEntity`](find-vbrvientity.md) cmdlet. Provide the `VMsAndTemplates` parameter. Specify the `Name` parameter value. Save the result to the `$vm` variable. 2. Run the `Add-VBRVMExclusion` cmdlet. Set the `$vm` variable as the `Entity` parameter value. ::: ## Related Commands [`Find-VBRViEntity`](find-vbrvientity.md)