Get-VBOCommand
Short Description
Returns a set of available cmdlets.
Syntax
This cmdlet provides parameter sets that allow you to:
- Get all Veeam Backup for Microsoft Office 365 cmdlets
Get-VBOCommand [<CommonParameters>] |
- Get a cmdlet with a specified name
Get-VBOCommand [[-Name] <string>] [<CommonParameters>] |
- Get cmdlets whose names contain a specified noun or verb
Get-VBOCommand [-Noun <string>] [-Verb <string>] [<CommonParameters>] |
Detailed Description
This cmdlet allows you to get cmdlets with a specific name, or with a name that consists of a certain verb or noun.
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 | Required | Position | Accept | Accept |
Name | Specifies a name to query cmdlets. The Get-VBOCommand cmdlet will return a cmdlet whose name matches the specified name. | False | 0 | True (ByValue, | True |
Noun | Specifies a noun to query cmdlets. The Get-VBOCommand cmdlet will return a list of cmdlets whose names contain the specified noun. | False | Named | True (By | True |
Verb | Specifies a verb to query cmdlets. The Get-VBOCommand cmdlet will return a list of cmdlets whose names contain the specified verb. | False | Named | True (By | True |
<CommonParameters>
This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see Microsoft Docs.
Example 1
This command returns all available Veeam Backup for Microsoft Office 365 PowerShell cmdlets.
Get-VBOCommand |
Example 2
This command returns a cmdlet with the Add-VBOJob name.
Get-VBOCommand -name Add-VBOJob |
Example 3
This command returns cmdlets whose names contain the Get verb.
Get-VBOCommand -verb Get |
Example 4
This command returns cmdlets whose names contain the VBOJob noun.
Get-VBOCommand -noun VBOCommand |