--- title: "Get-NetAppInfrastructureVolume" description: "This cmdlet returns an array of volumes of NetApp storage systems. The cmdlet will return storage volumes, even if they are not added to your backup infrastructure." canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/get-netappinfrastructurevolume.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > Storage Systems > NetApp Storage Systems > Get-NetAppInfrastructureVolume" dateModified: "2026-08-19" --- # Get-NetAppInfrastructureVolume ## Short Description Returns storage volumes of NetApp storage systems. **Platform**: VMware **Product Edition**: Standard, Enterprise, Enterprise Plus, Veeam Universal License ## Syntax ``` Get-NetAppInfrastructureVolume [-Name ] [-Host ] [] ``` ## Detailed Description This cmdlet returns an array of volumes of NetApp storage systems. The cmdlet will return storage volumes, even if they are not added to your backup infrastructure. ::: tip You can use this cmdlet to specify storage volumes that you want to rescan or exclude from the storage rescan. ::: ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Host

Specifies a storage system. The cmdlet will return volumes of this storage system.

Accepts the CNaHost object. To get this object, run the Get-NetAppHost cmdlet.

CNaHost

False

Named

True (ByPropertyName, ByValue)

Name

Specifies an array of volume names. The cmdlet will return volumes with these names.

String[]

False

Named

False

`` 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 `NetAppInfrastructureVolume` ## Examples ::: example ### Example 1. Getting Volumes of All NetApp Storage Systems This command returns volumes of all NetApp storage systems. ``` Get-NetAppInfrastructureVolume ``` ::: ::: example ### Example 2. Getting NetApp Storage Volumes by Name This command returns NetApp storage volumes by the volume name. ``` Get-NetAppInfrastructureVolume -Name "ISCSI Volume4", "ISCSI Volume5", "NFS Volume1" ``` ::: ::: example ### Example 3. Getting All Volumes of Specific NetApp Storage System This example shows how to get all volumes of the specified NetApp storage system. ``` $storage = Get-NetAppHost -Name "NetApp Store" Get-NetAppInfrastructureVolume -Host $storage ``` Perform the following steps: 1. Run the [`Get-NetAppHost`](get-netapphost.md) cmdlet. Specify the `Name` parameter value. Save the result to the `$storage` variable. 2. Run the `Get-NetAppInfrastructureVolume` cmdlet. Set the `$storage` variable as the `Host` parameter value. ::: ## Related Commands [`Get-NetAppHost`](get-netapphost.md)