Add-VBRDiscoveredComputerConfigurationPolicy
Short Description
Updates Veeam Agent settings on discovered computers using available configuration options.
Important |
Make sure to test this cmdlet in the lab before you run it in the production environment. |
Applies to
Product Edition: Standard, Enterprise, Enterprise Plus, Veeam Universal License
Syntax
This cmdlet provides parameter sets that allow you to:
- Update Veeam Agent settings on individual computers using available configuration options.
Add-VBRDiscoveredComputerConfigurationPolicy -AgentType {Windows | Linux | Mac | Unix} -ConfigurationOption <VBRDiscoveredComputerConfigurationOption[]> -DiscoveredComputer <VBRDiscoveredComputer[]> [<CommonParameters>] |
- Update Veeam Agent settings on computers in a protection group using available configuration options.
Add-VBRDiscoveredComputerConfigurationPolicy -AgentType {Windows | Linux | Mac | Unix} -ConfigurationOption <VBRDiscoveredComputerConfigurationOption[]> -ProtectionGroup <VBRProtectionGroup[]> [<CommonParameters>] |
Detailed Description
This cmdlet updates Veeam Agent settings on individual computers or computers in protection groups using available configuration options. New settings are applied after the rescan operation.
Parameters
Parameter | Description | Type | Required | Position | Accept Pipeline Input |
---|---|---|---|---|---|
AgentType | Specifies the type of a Veeam Agent:
| VBRAgentType | True | Named | True |
ConfigurationOption | Specifies the configuration option that you want to assign to discovered computers. | Accepts the VBRDiscoveredComputerConfigurationOption[] object. To get this object, run the New-VBRDiscoveredComputerConfigurationOption cmdlet. | True | Named | True |
DiscoveredComputer | Specifies an array of discovered computers. The cmdlet will assign the configuration option to these computers. | Accepts the VBRDiscoveredComputer[] object. To get this object, run the Get-VBRDiscoveredComputer cmdlet. | True | Named | True |
ProtectionGroup | Specifies an array of protection groups to which you want to assign the configuration option. | Accepts the VBRProtectionGroup[] object. To get this object, run the Get-VBRProtectionGroup cmdlet. | True | Named | True |
<CommonParameters>
This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see Microsoft Docs.
Output Object
VBRDiscoveredComputerConfigurationPolicy
Examples
Updating Path to Temporary Folder Storing SQL Backup Logs on Windows Computers
This example shows how to update the SqlTempLogPath registry value on Windows computers.
$group = Get-VBRProtectionGroup -Name "Windows" $computers = Get-VBRDiscoveredComputer -ProtectionGroup $group $SQLLogpath = New-VBRDiscoveredComputerConfigurationOption -Name "SqlTempLogPath" -Value "D:\Temp" $configuration_policy = Add-VBRDiscoveredComputerConfigurationPolicy -DiscoveredComputer $computers -AgentType Windows -ConfigurationOption $SQLLogpath |
Perform the following steps:
- Run the Get-VBRProtectionGroup cmdlet. Specify the Name parameter value. Save the result to the $group variable.
- Run the Get-VBRDiscoveredComputer cmdlet. Set the $group variable as the ProtectionGroup parameter value. Save the result to the $computers variable.
- Run the New-VBRDiscoveredComputerConfigurationOption cmdlet. Specify the Name and the Value parameter values. Save the result to the $SQLLogpath variable.
- Run the Add-VBRDiscoveredComputerConfigurationPolicy cmdlet. Specify the following settings:
- Set the $computers variable as the DiscoveredComputer parameter value.
- Specify the AgentType parameter value.
- Set the $SQLLogpath variable as the ConfigurationOption parameter value.
Save the result to the $configuration_policy variable.
Related Commands