Get-DPMConsistencyCheckWindow

Gets the consistency check window settings for a protection group.

Syntax

Get-DPMConsistencyCheckWindow
   [-ProtectionGroup] <ProtectionGroup>
   [<CommonParameters>]

Description

The Get-DPMConsistencyCheckWindow cmdlet gets the consistency check window settings for a System Center 2019 - Data Protection Manager (DPM) protection group. For more information about consistency check windows, see the Set-DPMConsistencyCheckWindow cmdlet.

Examples

Example 1: Get consistency check window settings

PS C:\>$PGroup = Get-DPMProtectionGroup | Where {$_.FriendlyName -like "*ContosoPG*"}
PS C:\> Get-DPMConsistencyCheckWindow -ProtectioGroup $PGroup

The first command gets protection groups. This command passes the results to the Where-Object cmdlet. That cmdlet drops all except ones that match the specified friendly name. For more information, type Get-Help Where-Object. The command stores the protection group in the $PGroup variable.

The second command gets settings for the consistency check window of the protection group in $PGroup.

Parameters

-ProtectionGroup

Specifies a protection group for which this cmdlet gets settings. To obtain a ProtectionGroup object, use the Get-DPMProtectionGroup cmdlet.

Type:ProtectionGroup
Position:1
Default value:None
Required:True
Accept pipeline input:True
Accept wildcard characters:False