--- title: "Get-VBRNDMPVolume" description: "Returns NDMP server volumes. Product Edition: Enterprise This cmdlet provides the following parameter sets: Name (Default) Id Server This cmdlet returns an array of NDMP server volumes." canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/get-vbrndmpvolume.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > Tape Devices > NDMP Volumes Restore > Get-VBRNDMPVolume" dateModified: "2026-08-19" --- # Get-VBRNDMPVolume ## Short Description Returns NDMP server volumes. **Product Edition**: Enterprise ## Syntax This cmdlet provides the following parameter sets: ## Detailed Description This cmdlet returns an array of NDMP server volumes. ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Id

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

Note: You an array of volume IDs only after you create the file to tape job.

Guid[]

True

Named

False

Name

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

String[]

False

Named

False

Server

Specifies an array of NDMP servers. The cmdlet will return volumes located on these NDMP servers.

Accepts the VBRNDMPServerBase[] object. To get this object, run the Get-VBRNDMPServer cmdlet.

VBRNDMPServerBase[]

True

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 [`VBRNDMPVolume`](vbrndmpvolume.md) ## Examples ::: example ### Example 1. Getting Volumes of All NDMP Servers This command gets volumes of all NDMP servers added to Veeam Backup & Replication. ``` Get-VBRNDMPVolume ``` ::: ::: example ### Example 2. Getting NDMP Server Volume by Volume ID This command gets an NDMP server volume by the volume ID. ``` Get-VBRNDMPVolume -ID "0fccf7c9-1f90-49de-8bec-53a0697e04ab" ``` ::: ::: example ### Example 3. Getting NDMP Server Volume by Volume ID This command gets an NDMP server volume by the volume name. ``` Get-VBRNDMPVolume -Name "/svm-cifs/Exchange_vol" ``` ::: ::: example ### Example 4. Getting All Volumes on Selected NDMP Server [Using Variable] This example shows how to get all volumes on a specific NDMP server. ``` $server = Get-VBRNDMPServer -Name "NetApp.local" Get-VBRNDMPVolume -Server $server ``` Perform the following steps: 1. Run the [`Get-VBRNDMPServer`](get-vbrndmpserver.md) cmdlet. Specify the `Name` parameter value. Save the result to the `$server` variable. 2. Run the `Set-VBRNDMPServer` cmdlet. Set the `$server` variable as `Server` parameter value. ::: ## Related Commands [`Get-VBRNDMPServer`](get-vbrndmpserver.md)