This is an archive version of the document. To get the most up-to-date information, see the current version.

Remove-HP3Snapshot

Short Description

Removes HPE 3PAR StoreServ storage snapshots.

Applies to

Platform: VMware

Product Edition: Standard, Enterprise, Enterprise Plus

Storage system: HPE 3PAR StoreServ

Syntax

Remove-HP3Snapshot -Snapshot <CSanSnapshot[]> [<CommonParameters>]

Related Commands

Get-HP3Snapshot

Detailed Description

This cmdlet permanently removes the selected HPE 3PAR StoreServ storage snapshot from your storage system.

Parameters

Parameter

Description

Required

Position

Accept
Pipeline
Input

Accept
Wildcard
Characters

Snapshot

Specifies the array of  snapshots. The cmdlet will remove these snapshots.

True

Named

True (ByValue,
ByProperty
Name)

False

<CommonParameters>

This cmdlet supports Microsoft PowerShell common parameters. For more information about common parameters, see http://go.microsoft.com/fwlink/p/?LinkID=113216.

Example 1

This command removes the snapshot named "vol1_SS_1". The snapshot object is obtained with Get-HP3Snapshot and piped down.

PS C:\PS> Get-HP3Snapshot -Name "vol1_SS_1" | Remove-HP3Snapshot

Example 2

This command removes the snapshot represented by the $"snapshot1" variable. The snapshot object is obtained with Get-HP3Snapshot and assigned to the variable beforehand.

PS C:\PS> Remove-HP3Snapshot -Snapshot $"snapshot1"