--- title: "Get-VBRNutanixVolume" description: "This cmdlet returns Nutanix Files volumes added to the backup infrastructure. Run the Get-VBRIsilonInfrastructureVolume cmdlet to get an array of all volumes of Nutanix Files storage systems." canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/get-vbrnutanixvolume.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > Storage Systems > Nutanix Files Storage Systems > Get-VBRNutanixVolume" dateModified: "2026-08-19" --- # Get-VBRNutanixVolume ## Short Description Returns all volumes of the specified Nutanix Files storage systems. **Product Edition**: Standard, Enterprise, Enterprise Plus, Veeam Universal License ## Syntax ``` Get-VBRNutanixVolume [-Name ] [-Host ] [] ``` ## Detailed Description This cmdlet returns Nutanix Files volumes added to the backup infrastructure. ::: tip Run the [`Get-VBRIsilonInfrastructureVolume`](get-vbrisiloninfrastructurevolume.md) cmdlet to get an array of all volumes of Nutanix Files storage systems. The cmdlet will also return volumes not added to the backup infrastructure. ::: ## 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 `CSanVolume` object that defines volume settings. ## Examples ::: example ### Getting Nutanix Files Volumes This command gets Nutanix Files volumes. ``` Get-VBRNutanixVolume -Name "VOL01" ``` :::