Install-VBRDiscoveredComputerPlugin
Short Description
Installs Veeam Plug-Ins on discovered computers.
Product Edition: Community, Standard, Enterprise, Enterprise Plus, Veeam Universal License
Syntax
|
Install-VBRDiscoveredComputerPlugin -DiscoveredComputer <VBRDiscoveredComputer[]> -Type <VBRApplicationType> [-RunAsync] [-WhatIf] [-Confirm] [<CommonParameters>] |
Detailed Description
This cmdlet installs Veeam Plug-Ins on discovered computers.
Parameters
|
Parameter |
Description |
Type |
Required |
Position |
Accept Pipeline Input |
|---|---|---|---|---|---|
|
DiscoveredComputer |
Specifies the array of discovered computers. The cmdlet will install Veeam Agents on these computers.
Accepts the |
True |
Named |
True (ByPropertyName, ByValue) |
|
|
RunAsync |
Defines that the command returns immediately without waiting for the task to complete. |
|
False |
Named |
True (ByPropertyName) |
|
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. |
|
True |
Named |
False |
|
Confirm |
Defines whether the cmdlet displays a prompt that asks if the user is sure that they want to continue. |
|
False |
Named |
False |
|
WhatIf |
Defines whether the cmdlet writes a message that describes the effects of running the cmdlet without actually performing any action. |
|
False |
Named |
False |
<CommonParameters>
This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see Microsoft Docs.
Output Object
Examples
Installing Veeam Plug-In for Oracle RMAN on Discovered Computers for Specified Protection Group
This example shows how to install Veeam Plug-In for Oracle RMAN on discovered computers for the Database Servers protection group.
|
$group = Get-VBRProtectionGroup -Name "Database Servers" $computers = Get-VBRDiscoveredComputer -ProtectionGroup $group Install-VBRDiscoveredComputerPlugin -DiscoveredComputer $computers -Type OracleRMAN |
Perform the following steps:
- Run the
Get-VBRProtectionGroupReturns protection groups. cmdlet. Specify theNameparameter value. Save the result to the$groupvariable. - Run the
Get-VBRDiscoveredComputerReturns discovered computers. cmdlet. Set the$groupvariable as theProtectionGroupparameter value. Save the result to the$computersvariable. - Run the
Install-VBRDiscoveredComputerPlugincmdlet. Set the$computersvariable as theDiscoveredComputerparameter value. Set theOracleRMANoption for theTypeparameter.
Related Commands
Get-VBRProtectionGroupReturns protection groups.Get-VBRDiscoveredComputerReturns discovered computers.