--- title: "Get-VESPCommand" description: "Returns a set of cmdlets available for Veeam Explorer for Microsoft SharePoint and Veeam Explorer for Microsoft OneDrive." canonical: "https://helpcenter.veeam.com/docs/vbo365/explorers_powershell/get-vespcommand.html" breadcrumb: "Veeam Explorers PowerShell Reference > Veeam Explorers PowerShell Reference > Veeam Explorer for Microsoft SharePoint > Get-VESPCommand" dateModified: "2026-08-20" --- # Get-VESPCommand ## Short Description Returns a set of cmdlets available for Veeam Explorer for Microsoft SharePoint and Veeam Explorer for Microsoft OneDrive. **Product**: Veeam Backup & Replication, Veeam Backup for Microsoft 365 **Product Edition**: Community, Standard, Enterprise, 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 Microsoft SharePoint and Veeam Explorer for Microsoft OneDrive. 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-VESPCommand` cmdlet consists of the `Get` verb and the `VESPCommand` noun. To get this cmdlet, you can search for it either by its full name, the `Get` verb or the `VESPCommand` 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 Explorer for Microsoft SharePoint and Veeam Explorer for Microsoft OneDrive Cmdlets This command returns all Veeam Explorer for Microsoft SharePoint and Veeam Explorer for Microsoft OneDrive cmdlets. ``` Get-VESPCommand ``` ::: ::: example ### Example 2. Getting Cmdlet by Name This command returns the `Get-VESPItem` cmdlet. ``` Get-VESPCommand -Name Get-VESPItem ``` ::: ::: example ### Example 3. Getting Cmdlets by Verb This command returns a list of cmdlets whose names contain the `Get` verb. ``` Get-VESPCommand -Verb Get ``` ::: ::: example ### Example 4. Getting Cmdlets that Contain Specific Noun This command returns a list of cmdlets whose names contain the `VESPItem` noun. ``` Get-VESPCommand -Noun VESPItem ``` :::