Install-VBRDiscoveredComputerPlugin
Short Description
Installs Veeam Plug-ins on discovered computers.
Applies to
Product Edition: Community, Standard, Enterprise, Enterprise Plus, Veeam Universal License
Syntax
Install-VBRDiscoveredComputerPlugin -DiscoveredComputer <VBRDiscoveredComputer[]> [-RunAsync] -Type {OracleRMAN | SAPHANA | SAPOnOracle} [-Confirm] [-WhatIf] [<CommonParameters>] |
Detailed Description
This cmdlet installs Veeam Plug-ins on discovered computers.
Parameters
Parameter | Description | Type | Required | Position | Accept | Accept |
---|---|---|---|---|---|---|
DiscoveredComputer | Specifies the array of discovered computers. The cmdlet will install Veeam Agents on these computers. | Accepts VBRDiscoveredComputer[] type. | True | Named | True (ByValue, | False |
RunAsync | Defines that the command returns immediately without waiting for the task to complete. | SwitchParameter | False | Named | True (ByPropertyName) | False |
Type | Specifies the type of Veeam Plug-in to be installed on the protected computers:
The cmdlet will return discovered computers with applications of these types. | Accepts VBRApplicationType type. | True | Named | False | False |
WhatIf | Specifies whether the cmdlet writes a message that describes the effects of running the cmdlet without actually performing any action. | SwitchParameter | False | Named | False | False |
Confirm | Specifies whether the cmdlet displays a prompt that asks if the user is sure that they want to continue. | SwitchParameter | False | Named | False | False |
<CommonParameters>
This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see the About CommonParameters section of Microsoft Docs.
Return Type
Example
This example shows how to install Veeam Plug-in for Oracle RMAN on discovered computers of a selected protection group.
You will need to perform the following steps:
- Run Get-VBRProtectionGroup to get the protection group. Save the result to the $group variable.
- Run Get-VBRDiscoveredComputer with the $group variable to get the discovered computers of the protection group. Save the result to the $computers variable.
- Run Install-VBRDiscoveredComputerPlugin with the $computers variable. Use the Type parameter to specify the application type.
$group = Get-VBRProtectionGroup -Name "Database Servers" $computers = Get-VBRDiscoveredComputer -ProtectionGroup $group Install-VBRDiscoveredComputerPlugin -DiscoveredComputer $computers -Type OracleRMAN |
Related Commands