Remove-DPMPGSet
删除保护组集。
语法
Remove-DPMPGSet
[-PGSet] <PGSet>
[-WhatIf]
[-Confirm]
[<CommonParameters>]
说明
Remove-DPMPGSet cmdlet 删除 System Center - Data Protection Manager (DPM) 保护组集。 DPM 保护组集是在同一磁带上并置的保护组的集合。
示例
示例 1:删除保护组集
PS C:\>$PGSet = Get-DPMPGSet -DPMServerName "DPMServer07"
PS C:\> Remove-DPMPGSet -PGSet $PGSet[0]
第一个命令使用 Get-DPMPGSet cmdlet 获取指定服务器的保护组集,然后将其存储在$PGSet变量中。
第二个命令使用标准数组表示法指定$PGSet的第一个成员。 该命令将删除该保护组集。
参数
-Confirm
在运行 cmdlet 之前,提示你进行确认。
类型: | SwitchParameter |
别名: | cf |
Position: | Named |
默认值: | False |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-PGSet
指定此 cmdlet 删除的保护组集。 若要获取保护组集对象,请使用 Get-DPMPGSet cmdlet。
类型: | PGSet |
Position: | 1 |
默认值: | None |
必需: | True |
接受管道输入: | True |
接受通配符: | False |
-WhatIf
显示 cmdlet 运行时会发生什么情况。 cmdlet 未运行。
类型: | SwitchParameter |
别名: | wi |
Position: | Named |
默认值: | False |
必需: | False |
接受管道输入: | False |
接受通配符: | False |