--- title: "Remove-StoragePluginArchivedSnapshot" description: "This cmdlet removes archived snapshots of Universal Storage API integrated systems. Archived snapshots are long-term snapshots offloaded to a 3rd party storage solution supported by a storage vendor." canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/remove-storagepluginarchivedsnapshot.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > Storage Systems > Universal Storage API Integrated Systems > Remove-StoragePluginArchivedSnapshot" dateModified: "2026-08-19" --- # Remove-StoragePluginArchivedSnapshot ## Short Description Removes archived snapshots of Universal Storage API integrated systems. **Platform**: VMware **Product Edition**: Standard, Enterprise, Enterprise Plus, Veeam Universal License ## Syntax ``` Remove-StoragePluginArchivedSnapshot -Snapshot [] ``` ## Detailed Description This cmdlet removes archived snapshots of Universal Storage API integrated systems. Archived snapshots are long-term snapshots offloaded to a 3rd party storage solution supported by a storage vendor. ::: tip To remove the retrieved version of the archived snapshot, use the [`Remove-StoragePluginSnapshot`](remove-storagepluginsnapshot.md) cmdlet. ::: ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Snapshot

Specifies the archived snapshot that you plan to remove.

Accepts the CSanArchivedSnapshot[] object. To get this object, run the Get-StoragePluginArchivedSnapshot cmdlet.

VBRStoragePluginArchivedSnapshot[]

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). ## Output Object The cmdlet returns the `CBaseSession` object that defines the removal session. ## Examples ::: example ### Removing Snapshot This example shows how to remove the archived snapshot that has the `pdcqastg11:-pure14-AAB97A18587ghudDaPRSF-t5kbsdr1E` name. ``` $snapshot = Get-StoragePluginArchivedSnapshot -Name pdcqastg11:-pure14-AAB97A18587ghudDaPRSF-t5kbsdr1E Remove-StoragePluginArchivedSnapshot -Snapshot $snapshot ``` Perform the following steps: 1. Run the [`Get-StoragePluginArchivedSnapshot`](get-storagepluginarchivedsnapshot.md) cmdlet. Specify the `Name` parameter value. Save the result to the `$snapshot` variable. 2. Run the `Remove-StoragePluginArchivedSnapshot` cmdlet. Set the `$snapshot` variable as the `Snapshot` parameter value. ::: ## Related Commands [`Get-StoragePluginArchivedSnapshot`](get-storagepluginarchivedsnapshot.md)