--- title: "Get-VBOCommand" description: "This cmdlet returns an array of cmdlets available for Veeam Backup for Microsoft 365. You can query the cmdlets by the full name of the necessary cmdlet, or by the verb or noun in the cmdlet name." canonical: "https://helpcenter.veeam.com/docs/vbo365/powershell/get-vbocommand.html" breadcrumb: "PowerShell Reference > Veeam Backup for Microsoft 365 PowerShell Reference > Available Cmdlets > Get-VBOCommand" dateModified: "2026-08-21" --- # Get-VBOCommand ## Short Description Returns a set of the available cmdlets. ## Syntax This cmdlet provides the following parameter sets: ## Detailed Description This cmdlet returns an array of cmdlets available for Veeam Backup for Microsoft 365. You can query the cmdlets by the full name of the necessary cmdlet, or by the verb or noun in the cmdlet name. For example, the name of the `Get-VBOCommand` cmdlet consists of the `Get` verb and the `VBOCommand` noun. To get this cmdlet, you can search it either by its full name, the `Get` verb or the `VBOCommand` noun. ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Name

Specifies a name to query cmdlets. The cmdlet will return a cmdlet whose name matches the specified name.

String

False

0

True (ByPropertyName, ByValue)

Noun

Specifies a noun to query cmdlets. The cmdlet will return a list of cmdlets whose names contain the specified noun.

String

False

Named

True (ByPropertyName)

Verb

Specifies a verb to query cmdlets. The cmdlet will return a list of cmdlets whose names contain the specified verb.

String

False

Named

True (ByPropertyName)

`` This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see the [About Common Parameters](http://go.microsoft.com/fwlink/p/?LinkID=113216) section of Microsoft Learn. ## Examples ::: example ### Example 1: Getting All Veeam Backup for Microsoft 365 PowerShell Cmdlets This command returns all available Veeam Backup for Microsoft 365 PowerShell cmdlets. ``` Get-VBOCommand ``` ::: ::: example ### Example 2: Getting Cmdlet by Name This command returns the `Add-VBOJob` cmdlet. ``` Get-VBOCommand -Name Add-VBOJob ``` ::: ::: example ### Example 3: Getting Cmdlets by Verb This command returns a list of cmdlets whose names contain the `Get` verb. ``` Get-VBOCommand -Verb Get ``` ::: ::: example ### Example 4: Getting Cmdlets that Contain Specific Noun This command returns a list of cmdlets whose names contain the `VBOCommand` noun. ``` Get-VBOCommand -Noun VBOCommand ``` :::