Remove-DPMPGSet
Deletes a protection group set.
Parameter Set: Default
Remove-DPMPGSet [-PGSet] <PGSet> [-Confirm] [-WhatIf] [ <CommonParameters>]
The Remove-DPMPGSet cmdlet deletes a System Center 2012 – Data Protection Manager (DPM) protection group set. A DPM protection group set is a collection of protection groups that you collocate on the same tape.
Specifies the protection group set that this cmdlet deletes. To obtain a protection group set object, use the Get-DPMPGSet cmdlet.
Aliases |
none |
Required? |
true |
Position? |
1 |
Default Value |
none |
Accept Pipeline Input? |
true (ByValue) |
Accept Wildcard Characters? |
false |
Prompts you for confirmation before running the cmdlet.
Required? |
false |
Position? |
named |
Default Value |
false |
Accept Pipeline Input? |
false |
Accept Wildcard Characters? |
false |
Shows what would happen if the cmdlet runs. The cmdlet is not run.
Required? |
false |
Position? |
named |
Default Value |
false |
Accept Pipeline Input? |
false |
Accept Wildcard Characters? |
false |
This cmdlet supports the common parameters: -Verbose, -Debug, -ErrorAction, -ErrorVariable, -OutBuffer, and -OutVariable. For more information, see about_CommonParameters (https://go.microsoft.com/fwlink/p/?LinkID=113216).
The input type is the type of the objects that you can pipe to the cmdlet.
The output type is the type of the objects that the cmdlet emits.
The first command uses the Get-DPMPGSet cmdlet to get the protection group sets for the specified server, and then stores them in the $PGSet variable.
The second command specifies the first member of $PGSet by using standard array notation. The command removes that protection group set.
PS C:\> $PGSet = Get-DPMPGSet -DPMServerName "DPMServer07"
PS C:\> Remove-DPMPGSet -PGSet $PGSet[0]