--- title: "Get-VBRVMExclusion" description: "This cmdlet returns a list of global exclusions created for VMs." canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/get-vbrvmexclusion.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > Backup Infrastructure > Global VM Exclusion > Get-VBRVMExclusion" dateModified: "2026-08-19" --- # Get-VBRVMExclusion ## Short Description Returns a list of global VM exclusions. **Product Edition**: Standard, Enterprise, Enterprise Plus, Veeam Universal License ## Syntax This cmdlet provides the following parameter sets: ## Detailed Description This cmdlet returns a list of global exclusions created for VMs. ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Id

Specifies the ID of an exclusion.

Guid[]

False

0

True (ByPropertyName, ByValue)

Name

Specifies an array of excluded VM names.

String[]

False

0

True (ByPropertyName, ByValue)

Note

Specifies the note added for an exclusion.

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 ### Getting Exclusion by VM Name This command returns an exclusion created for the `ubuntusrv20` VM. ``` Get-VBRVMExclusion -Name "ubuntusrv20" ``` :::