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

Get-HP3Snapshot

In this article

    Short Description

    Returns HPE 3PAR StoreServ storage snapshots.

    Applies to

    Platform: VMware

    Product Edition: Standard, Enterprise, Enterprise Plus

    Storage system: HPE 3PAR StoreServ

    Syntax

    Get-HP3Snapshot [-Name <string[]>][<CommonParameters>]

    -OR-

    Get-HP3Snapshot [-Name <string[]>] [-Volume <CSanVolume[]>][<CommonParameters>]

    Related Commands

    Get-HP3Volume

    Detailed Description

    This cmdlet returns HPE 3PAR StoreServ storage snapshots.

    You can get the list of all storage snapshots, or look for a specific snapshot name or volume.

    Parameters

    Parameter

    Description

    Required

    Position

    Accept
    Pipeline
    Input

    Accept
    Wildcard
    Characters

    Name

    Specifies the array of the snapshot names. The cmdlet will return the snapshots with these names.

    False

    Named

    False

    True

    Volume

    Specifies the array of volumes. The cmdlet will return the snapshots of these volumes.

    False

    Named

    False

    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 looks for all snapshots.

    PS C:\PS> Get-HP3Snapshot

    Example 2

    This command looks for snapshots of the specific volumes. The list of volumes is obtained with Get-HP3Volume, the first three volumes are selected and piped down.

    PS C:\PS> Get-HP3Volume | Select -First 3 | Get-HP3Snapshot