This is an archive version of the document. To get the most up-to-date information, see the current version.

Get-VBRCommand

Short Description

Returns Veeam PowerShell SnapIn cmdlets.

Applies to

Platform: VMware, Hyper-V

Product Edition: Standard, Enterprise, Enterprise Plus

Syntax

This cmdlet provides 3 parameter sets.

  • For looking for all Veeam cmdlets:

Get-VBRCommand [-V95] [-V90] [-V80] [<CommonParameters>]

  • For looking for Veeam cmdlets by name of the cmdlet:

Get-VBRCommand [[-Name] <Object>] [<CommonParameters>]

  • For looking for Veeam cmdlets by verb or noun the cmdlet uses:

Get-VBRCommand [-Noun <Object>] [-Verb <Object>] [<CommonParameters>]

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.

Get-VBRCommand Note:

This cmdlet is available only in sessions started from Veeam Backup & Replication main menu.

Parameters

Parameter

Description

Required

Position

Accept
Pipeline
Input

Accept
Wildcard
Characters

V95

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

False

Named

False

False

V90

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

False

Named

False

False

V80

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

False

Named

False

False

Name

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

False

1

True (ByValue,
ByProperty
Name)

True

Noun

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

False

Named

True (ByProperty
Name)

True

Verb

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

False

Named

True (ByProperty
Name)

True

<CommonParameters>

This cmdlet supports Microsoft PowerShell common parameters. For more information about common parameters, see http://go.microsoft.com/fwlink/p/?LinkID=113216.

Example 1

This command returns the list of Veeam cmdlets that perform remove operations.

Get-VBRCommand Remove*

Example 2

This command returns Veeam cmdlets with names containing "Zip".

Get-VBRCommand -Name *Zip*

Example 3

This command returns Veeam cmdlets with verbs "Get" and "Set".

Get-VBRCommand -Verb Get, Set

Example 4

This command returns Veeam cmdlets with nouns containing "Job" and "Zip".

Get-VBRCommand -Noun *Job*, *Zip*