--- title: "Add-StoragePluginSnapshot" description: "This cmdlet creates a snapshot of a selected storage volume." canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/add-storagepluginsnapshot.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > Storage Systems > Universal Storage API Integrated Systems > Add-StoragePluginSnapshot" dateModified: "2026-08-19" --- # Add-StoragePluginSnapshot ## Short Description Creates snapshots of Universal Storage API integrated systems. **Platform**: VMware **Product Edition**: Standard, Enterprise, Enterprise Plus, Veeam Universal License **Storage System**: IBM Spectrum Virtualize, INFINIDAT InfiniBox, Pure Storage ## Syntax ``` Add-StoragePluginSnapshot -Volume -Name [-Description ] [] ``` ## Detailed Description This cmdlet creates a snapshot of a selected storage volume. ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Description

Specifies the description of the storage.

String

False

Named

False

Name

Specifies the name you want to assign to the snapshot.

String

True

Named

True (ByPropertyName, ByValue)

Volume

Specifies the storage volume for which you want to take snapshot.

Accepts the CSanVolume object. To get this object, run the Get-StoragePluginVolume cmdlet.

CSanVolume

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 ### Creating Volume Snapshot This example shows how to create a volume snapshot. ``` $storage = Get-StoragePluginHost -Name "IBM Spectrum" $volume = Get-StoragePluginVolume -Host $storage -Name "VOLUME-01" Add-StoragePluginSnapshot -Volume $volume -Name "DailySnapshot01" ``` Perform the following steps: 1. Run the [`Get-StoragePluginHost`](get-storagepluginhost.md) cmdlet. Specify the `Name` parameter value. Save the result to the `$storage` variable. 2. Run the [`Get-StoragePluginVolume`](get-storagepluginvolume.md) cmdlet. Set the `$storage` variable as the `Host` parameter value. Specify the `Name` parameter value. Save the result to the `$volume` variable. 3. Run the `Add-StoragePluginSnapshot` cmdlet. Set the `$volume` variable as the `Volume` parameter value. Specify the `Name` parameter value. ::: ## Related Commands - [`Get-StoragePluginHost`](get-storagepluginhost.md) - [`Get-StoragePluginVolume`](get-storagepluginvolume.md)