Get-VBRDiscoveredComputerConfigurationPolicy
Short Description
Returns configuration options applied to protected computers.
Product Edition: Standard, Enterprise, Enterprise Plus, Veeam Universal License
Syntax
This cmdlet provides the following parameter sets:
-
AllParameterSets (Default)Get-VBRDiscoveredComputerConfigurationPolicy [<CommonParameters>]
-
IdGet-VBRDiscoveredComputerConfigurationPolicy -Id <Guid> [<CommonParameters>]
-
ProtectionGroupGet-VBRDiscoveredComputerConfigurationPolicy -ProtectionGroup <VBRProtectionGroup> [<CommonParameters>]
-
DiscoveredComputerGet-VBRDiscoveredComputerConfigurationPolicy -DiscoveredComputer <VBRDiscoveredComputer> [<CommonParameters>]
Detailed Description
This cmdlet returns the list of configuration options applied to individual computers or computers in a protection group using the Add-VBRDiscoveredComputerConfigurationPolicyUpdates Veeam Agent settings on discovered computers using available configuration options. Make sure to test this cmdlet in the lab before you run it in the production environment. cmdlet.
Note |
|
If you run the cmdlet with the DiscoveredComputer or ProtectionGroup parameter, the cmdlet returns only those configuration options that were applied with the specified parameter. For example, if you applied different configuration options to a computer with the DiscoveredComputer and ProtectionGroup parameters and you run the cmdlet with the DiscoveredComputer parameter, the cmdlet will return only configuration options applied with the DiscoveredComputer parameter. |
Parameters
|
Parameter |
Description |
Type |
Required |
Position |
Accept Pipeline Input |
|---|---|---|---|---|---|
|
DiscoveredComputer |
Specifies an array of discovered computers. The cmdlet will return configuration options that were applied to the computers using this parameter.
Accepts the |
True |
Named |
True (ByPropertyName) |
|
|
Id |
Specifies the ID of the configuration policy. |
|
True |
Named |
True (ByPropertyName, ByValue) |
|
ProtectionGroup |
Specifies an array of protection groups. This cmdlet will return configuration options that were applied to computers in a protection group using this parameter.
Accepts the |
True |
Named |
True (ByPropertyName, ByValue) |
<CommonParameters>
This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see Microsoft Docs.
Output Object
VBRDiscoveredComputerConfigurationPolicy
Examples
Viewing Settings Applied to Protection Group
This example shows how to return configuration options applied to computers that are members of the BackupServers protection group.
|
$group = Get-VBRProtectionGroup -Name "BackupServers" Get-VBRDiscoveredComputerConfigurationPolicy -ProtectionGroup $group |
Perform the following steps:
- Run the
Get-VBRProtectionGroupReturns protection groups. cmdlet. Specify theNameparameter value. Save the result to the$groupvariable. - Run the
Get-VBRDiscoveredComputerConfigurationPolicycmdlet. Set the$groupvariable as theProtectionGroupparameter value.
Related Commands
Get-VBRProtectionGroupReturns protection groups.