共用方式為


Get-DPMBackupWindow

取得保護群組的備份窗口設定。

語法

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

Description

Get-DPMBackupWindow Cmdlet 會取得 System Center - Data Protection Manager (DPM) 保護群組的備份窗口設定。 如需備份視窗的詳細資訊,請參閱 Set-DPMBackupWindow Cmdlet。

範例

範例 1:取得備份窗口設定

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

第一個命令會取得保護群組。 此命令會將結果傳遞至 where-Object Cmdlet 。 該 Cmdlet 會卸除符合指定易記名稱的所有結果。 如需詳細資訊,請輸入 Get-Help Where-Object。 命令會將保護群組儲存在 $PGroup 變數中。

第二個命令會取得儲存在 $PGroup 之保護群組的備份窗口設定。

參數

-ProtectionGroup

指定此 Cmdlet 取得設定的保護群組。 若要取得 ProtectionGroup 物件,請使用 Get-DPMProtectionGroup Cmdlet。

類型:ProtectionGroup
Position:1
預設值:None
必要:True
接受管線輸入:True
接受萬用字元:False