Get-VEXCommand
Short Description
Returns a set of cmdlets available for Veeam Explorer for Microsoft Exchange.
Applies to
Product Edition: Community, Standard, Enterprise, Enterprise Plus
Syntax
This cmdlet provides parameter sets that allow you to:
- To get all Veeam Explorer for Microsoft Exchange cmdlets:
Get-VEXCommand [<CommonParameters>] |
- To get a cmdlet with a specified name:
Get-VEXCommand [[-Name] <string>] [<CommonParameters>] |
- To get cmdlets cmdlets whose names contain a specified noun or verb:
Get-VEXCommand [-Noun <string>] [-Verb <string>] [<CommonParameters>] |
Detailed Description
This cmdlet allows you to get cmdlets for Veeam Explorer for Microsoft Exchange. You can get a cmdlet with a specific name, or with a name that consists of a certain verb or noun.
For example, the Get-VEXCommand cmdlet consists of the Get verb and the VEXCommand noun. To get this cmdlet, you can search it either by its full name, the Get verb or the VEXCommand noun.
Parameters
Parameter | Description | Type | Required | Position | Accept Pipeline Input | Accept Wildcard Characters |
Name | Specifies a name to query cmdlets. The Get-VEXCommand cmdlet will return a cmdlet whose name matches the specified name. | String | False | 0 | True (ByValue, | True |
Noun | Specifies a noun to query cmdlets. The Get-VEXCommand cmdlet will return a list of cmdlets whose names contain the specified noun. | String | False | Named | True (By | True |
Verb | Specifies a verb to query cmdlets. The Get-VEXCommand cmdlet will return a list of cmdlets whose names contain the specified verb. | String | False | Named | True (By | True |
<CommonParameters>
This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see the About CommonParameters section of Microsoft Docs.
Example 1
This command returns all Veeam Explorer for Microsoft Exchange PowerShell cmdlets.
Get-VEXCommand |
Example 2
This command returns a cmdlet with the Get-VEXItem name.
Get-VEXCommand -Name Get-VEXItem |
Example 3
This command returns cmdlets whose names contain the Get verb.
Get-VEXCommand -Verb Get |
Example 4
This command returns cmdlets whose names contain the VEXItem noun.
Get-VEXCommand -Noun VEXItem |