New-DPMPGSet
建立 DPM 保護群組集。
語法
New-DPMPGSet
[[-DPMServerName] <String>]
[-AllowDifferentRetentionPeriods]
[-Name] <String>
[[-PGList] <ProtectionGroup[]>]
[[-WritePeriodUnit] <TimeUnit>]
[[-WritePeriodValue] <UInt32>]
[[-ExpiryToleranceUnit] <TimeUnit>]
[[-ExpiryToleranceValue] <UInt32>]
[<CommonParameters>]
Description
New-DPMPGSet Cmdlet 會建立 System Center - Data Protection Manager (DPM) 保護群組集。 DPM 保護群組是您在相同磁帶上共置的保護群組集合。
範例
範例 1:建立保護群組集
PS C:\>$PGroups = Get-DPMProtectionGroup -DPMServerName "DPMServer07" | where {($_.friendlyname) -match "PG1" -or ($_.friendlyname) -match "PG2"}
PS C:\> New-DPMPGSet -Name "PGSET2" -PGList $PGroups
第一個命令會使用 Get-DPMProtectionGroup Cmdlet 來取得名稱包含 PG1 或 PG2 的保護群組,然後將它們儲存在 $PGroups 變數中。
第二個命令會建立名為PGSET2的保護集,其中包含儲存在 $PGroups中的保護群組。
參數
-AllowDifferentRetentionPeriods
表示具有不同保留期限的保護群組可以是相同保護群組集的一部分。
類型: | SwitchParameter |
Position: | Named |
預設值: | None |
必要: | False |
接受管線輸入: | False |
接受萬用字元: | False |
-DPMServerName
指定此 Cmdlet 作用所在的 DPM 伺服器名稱。
類型: | String |
Position: | 1 |
預設值: | None |
必要: | False |
接受管線輸入: | False |
接受萬用字元: | False |
-ExpiryToleranceUnit
指定到期容錯的度量單位。
此參數可接受的值為:
- 日
- 周
- 月
- 年
類型: | TimeUnit |
接受的值: | Invalid, Day, Week, Month, Year |
Position: | 6 |
預設值: | None |
必要: | False |
接受管線輸入: | False |
接受萬用字元: | False |
-ExpiryToleranceValue
指定 DPM 將磁帶標示為過期之前,過期恢復點保留在磁帶上的時間長度上限。
類型: | UInt32 |
Position: | 7 |
預設值: | None |
必要: | False |
接受管線輸入: | False |
接受萬用字元: | False |
-Name
指定保護群組集的名稱。
類型: | String |
Position: | 2 |
預設值: | None |
必要: | True |
接受管線輸入: | False |
接受萬用字元: | False |
-PGList
指定要新增至保護群組集的保護群組陣列。 若要取得 ProtectionGroup 物件,請使用 Get-DPMProtectionGroup Cmdlet。
類型: | ProtectionGroup[] |
Position: | 3 |
預設值: | None |
必要: | False |
接受管線輸入: | True |
接受萬用字元: | False |
-WritePeriodUnit
指定寫入期間度量單位。
此參數可接受的值為:
- 日
- 周
- 月
- 年
類型: | TimeUnit |
接受的值: | Invalid, Day, Week, Month, Year |
Position: | 4 |
預設值: | None |
必要: | False |
接受管線輸入: | False |
接受萬用字元: | False |
-WritePeriodValue
指定磁帶可用於寫入新備份的時間長度。 DPM 會將磁帶標示為此間隔之後的異地就緒。
類型: | UInt32 |
Position: | 5 |
預設值: | None |
必要: | False |
接受管線輸入: | False |
接受萬用字元: | False |