Disable-VBRProtectionGroup
Short Description
Disables automatic discovery for the protection group computers.
Applies to
Product Edition: Community, Standard, Enterprise, Enterprise Plus
Syntax
Disable-VBRProtectionGroup -ProtectionGroup <VBRProtectionGroup[]> [-WhatIf] [-Confirm] [<CommonParameters>] |
Detailed Description
This cmdlet disables automatic discovery for the computers of selected protection groups.
To enable automatic discovery, run Enable-VBRProtectionGroup.
Parameters
Parameter | Description | Required | Position | Accept | Accept |
ProtectionGroup | Specifies the array of protection groups. The cmdlet will disable automatic discovery for the computers of these protection groups. Accepts VBRProtectionGroup[] type. | True | Named | True (ByValue, | False |
WhatIf | Specifies whether the cmdlet writes a message that describes the effects of running the cmdlet without actually performing any action. | False | Named | False | False |
Confirm | Specifies whether the cmdlet displays a prompt that asks if the user is sure that they want to continue. | False | Named | False | False |
<CommonParameters>
This cmdlet supports Microsoft PowerShell common parameters. For more information about common parameters, see http://go.microsoft.com/fwlink/p/?LinkID=113216.
Return Type
None
Example
This example shows how to disable automatic discovery for the computers of a 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 Disable-VBRProtectionGroup with the $group variable.
$group = Get-VBRProtectionGroup -Name "East Computers" Disable-VBRProtectionGroup -ProtectionGroup $group |
Related Commands