--- title: "Remove-ThinkSystemSnapshot" description: "This cmdlet permanently removes a selected ThinkSystem storage snapshot from your virtual infrastructure." canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/remove-thinksystemsnapshot.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > Storage Systems > Lenovo ThinkSystem Storage Systems > Remove-ThinkSystemSnapshot" dateModified: "2026-08-19" --- # Remove-ThinkSystemSnapshot ## Short Description Removes ThinkSystem storage snapshots. ::: note If the four-eyes authorization is enabled, you cannot run this cmdlet. For more information, see the [Four-Eyes Authorization](https://helpcenter.veeam.com/docs/vbr/userguide/four_eyes_authorization.html?ver=13) section in the User Guide for VMware vSphere. ::: **Product Edition**: Standard, Enterprise, Enterprise Plus, Veeam Universal License ## Syntax ``` Remove-ThinkSystemSnapshot -Snapshot [] ``` ## Detailed Description This cmdlet permanently removes a selected ThinkSystem storage snapshot from your virtual infrastructure. ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Snapshot

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

Accepts the CSanSnapshot object. To create this object, run the Get-ThinkSystemSnapshot cmdlet.

ISanSnapshot[]

True

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 ### Removing ThinkSystem Storage Snapshot This example shows how to remove the ThinkSystem storage snapshot. ``` $snapshot = Get-ThinkSystemSnapshot -Name "vol1_SS_1" Remove-ThinkSystemSnapshot -Snapshot $snapshot ``` Perform the following steps: 1. Run the [`Get-ThinkSystemSnapshot`](get-thinksystemsnapshot.md) cmdlet. Specify the `Name` parameter value. Save the result to the `$snapshot` variable. 2. Run the `Remove-ThinkSystemSnapshot` cmdlet. Set the `$snapshot` variable as the `Snapshot` parameter value. ::: ## Related Commands [`Get-ThinkSystemSnapshot`](get-thinksystemsnapshot.md)