--- title: "Get-VBRCommand" description: "This cmdlet returns the list of available Veeam PowerShell cmdlets. If you run this cmdlet without parameters, it will return the list of all Veeam cmdlets in the current session." canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/get-vbrcommand.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > Veeam PowerShell Help > Get-VBRCommand" dateModified: "2026-08-19" --- # Get-VBRCommand ## Short Description Returns Veeam PowerShell module cmdlets. **Platform**: VMware, Hyper-V **Product Edition**: Standard, Enterprise, Enterprise Plus, Veeam Universal License ## Syntax This cmdlet provides the following parameter sets: ## Detailed Description This cmdlet returns the list of available Veeam PowerShell cmdlets. If you run this cmdlet without parameters, it will return the list of all Veeam cmdlets in the current session. ::: note This cmdlet is available only for sessions started from Veeam Backup & Replication main menu. ::: ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Name

Specifies the name of the command. Lists the commands that match the specified name or regular name patterns.

String[]

False

0

True (ByPropertyName, ByValue)

Noun

Specifies the noun. Lists the commands using the specified noun name.

String[]

False

Named

True (ByPropertyName)

V100

Defines that the cmdlet will return cmdlets added in version 10 of Veeam Backup & Replication.

SwitchParameter

False

Named

False

V110

Defines that the cmdlet will return cmdlets added in version 11 of Veeam Backup & Replication.

SwitchParameter

False

Named

False

V120

Defines that the cmdlet will return cmdlets added in version 12 of Veeam Backup & Replication.

SwitchParameter

False

Named

False

V130

Defines that the cmdlet will return cmdlets added in version 13 of Veeam Backup & Replication.

SwitchParameter

False

Named

False

V80

Defines that the cmdlet will return cmdlets added in version 8.0 of Veeam Backup & Replication.

SwitchParameter

False

Named

False

V90

Defines that the cmdlet will return cmdlets added in version 9.0 of Veeam Backup & Replication.

SwitchParameter

False

Named

False

V95

Defines that the cmdlet will return cmdlets added in version 9.5 of Veeam Backup & Replication.

SwitchParameter

False

Named

False

Verb

Specifies the command verb. Lists the commands using the specified verb name.

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). ## Examples ::: example ### Example 1. Getting All Cmdlets that Perform Remove Operations This command returns the list of Veeam cmdlets that perform remove operations. ``` Get-VBRCommand Remove* ``` ::: ::: example ### Example 2. Getting Cmdlets by Names This command returns Veeam cmdlets with names containing "Zip". ``` Get-VBRCommand -Name *Zip* ``` ::: ::: example ### Example 3. Getting Cmdlets Starting with Specific Verbs This command returns Veeam cmdlets with verbs "Get" and "Set". ``` Get-VBRCommand -Verb Get, Set ``` ::: ::: example ### Example 4. Getting Cmdlets with Specific Nouns in Names This command returns Veeam cmdlets with nouns containing "Job" and "Zip". ``` Get-VBRCommand -Noun *Job*, *Zip* ``` :::