--- title: "Get-VEHANACommand" description: "Returns a set of cmdlets available for Veeam Explorer for SAP HANA. Product: Veeam Backup & Replication Product Edition: Enterprise Plus, Veeam Universal License This cmdlet provides the following parameter sets: This cmdlet returns an array of c" canonical: "https://helpcenter.veeam.com/docs/vbr/explorers_powershell/get-vehanacommand.html" breadcrumb: "Veeam Explorers PowerShell Reference > Veeam Explorers PowerShell Reference > Veeam Explorer for SAP HANA > Get-VEHANACommand" dateModified: "2026-08-18" --- # Get-VEHANACommand ## Short Description Returns a set of cmdlets available for Veeam Explorer for SAP HANA. **Product**: Veeam Backup & Replication **Product Edition**: Enterprise Plus, Veeam Universal License ## Syntax This cmdlet provides the following parameter sets: ## Detailed Description This cmdlet returns an array of cmdlets available for Veeam Explorer for SAP HANA. 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 `Get-VEHANACommand` cmdlet consists of the `Get` verb and the `VEHANACommand` noun. To get this cmdlet, you can search for it either by its full name, the `Get` verb or the `VEHANACommand` noun. ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Name

Specifies a name to query cmdlets. The Get-VEHANACommand 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 Get-VEHANACommand 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 Get-VEHANACommand 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 Docs. ## Examples ::: example ### Example 1. Getting All Cmdlets for Veeam Explorer for SAP HANA This command returns all cmdlets for Veeam Explorer for SAP HANA. ``` Get-VEHANACommand ``` ::: ::: example ### Example 2. Getting Cmdlet with Specific Name This command returns the `Get-VEHANADatabase` cmdlet. ``` Get-VEHANACommand -Name Get-VEHANADatabase ``` ::: ::: example ### Example 3. Getting Cmdlets that Contain Specific Verb This command returns cmdlets whose names contain the `Get` verb. ``` Get-VEHANACommand -Verb Get ``` ::: ::: example ### Example 4. Getting Cmdlets that Contain Specific Noun This command returns cmdlets whose names contain the `VEHANADatabase` noun. ``` Get-VEHANACommand -Noun VEHANADatabase ``` :::