--- title: "Get-VBRNutanixInfrastructureVolume" description: "This cmdlet returns an array of volumes of Nutanix Files 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-vbrnutanixinfrastructurevolume.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > Storage Systems > Nutanix Files Storage Systems > Get-VBRNutanixInfrastructureVolume" dateModified: "2026-08-19" --- # Get-VBRNutanixInfrastructureVolume ## Short Description Returns Nutanix Files volumes added to the backup infrastructure. **Product Edition**: Standard, Enterprise, Enterprise Plus, Veeam Universal License ## Syntax ``` Get-VBRNutanixInfrastructureVolume [-Name ] [-Host ] [] ``` ## Detailed Description This cmdlet returns an array of volumes of Nutanix Files 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 an array of volumes added to that storage system.

Accepts the CNutanixHost object. To create this object, run the Get-VBRNutanixHost cmdlet.

CNutanixHost

False

Named

True (ByPropertyName, ByValue)

Name

Specifies an array of volume names that you want to get. 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 The cmdlet returns the `CSanInfrastructureVolume[]` objects that define volume settings. ## Examples ::: example ### Getting Volumes of Nutanix Files Storage Systems This example shows how to get an array of volumes of Nutanix Files storage systems. ``` $host = Get-VBRNutanixHost -Name "Nutanix Files_host" Get-VBRNutanixInfrastructureVolume -Host $host ``` Perform the following steps: 1. Run the [`Get-VBRNutanixHost`](get-vbrnutanixhost.md) cmdlet. Specify the `Name` parameter value. Save the result to the `$host` variable. 2. Run the `Get-VBRNutanixInfrastructureVolume` cmdlet. Set the `$host` variable as the `Host` parameter value. ::: ## Related Commands [`Get-VBRNutanixHost`](get-vbrnutanixhost.md)