--- title: "Get-ThinkSystemSnapshot" description: "This cmdlet returns existing ThinkSystem storage snapshots. You can get the list of all storage snapshots, or look for a specific snapshot by name or associated volume." canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/get-thinksystemsnapshot.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > Storage Systems > Lenovo ThinkSystem Storage Systems > Get-ThinkSystemSnapshot" dateModified: "2026-08-19" --- # Get-ThinkSystemSnapshot ## Short Description Returns ThinkSystem storage snapshots. **Product Edition**: Standard, Enterprise, Enterprise Plus, Veeam Universal License ## Syntax ``` Get-ThinkSystemSnapshot [-Name ] [-Volume ] [] ``` ## Detailed Description This cmdlet returns existing ThinkSystem storage snapshots. You can get the list of all storage snapshots, or look for a specific snapshot by name or associated volume. ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Name

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

String[]

False

Named

False

Volume

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

Accepts the CSanVolume object. To create this object, run the Get-ThinkSystemVolume cmdlet.

CSanVolume[]

False

Named

True (ByPropertyName, ByValue)

`` This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see [ Microsoft Docs](https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.core/about/about_commonparameters?view=powershell-7). ## Examples ::: example ### Example 1. Getting All Snapshots This command returns the list of all snapshots. ``` Get-ThinkSystemSnapshot ``` ::: ::: example ### Example 2. Getting Snapshots of Specific Volume This example shows how to get snapshots of a specific volume. ``` $vol = Get-ThinkSystemVolume | Select -last 1 Get-ThinkSystemSnapshot -Volume $vol ``` Perform the following steps: 1. Run the [`Get-ThinkSystemVolume`](get-thinksystemvolume.md) cmdlet. Select the last volume in the list. Save the result to the `$vol` variable. 2. Run the `Get-ThinkSystemSnapshot` cmdlet. Set the `$vol` variable as the `Volume` parameter value. ::: ## Related Commands [`Get-ThinkSystemVolume`](get-thinksystemvolume.md)