--- title: "Get-VBRNDMPServer" description: "Returns NDMP servers. Product Edition: Enterprise Requires Cloud Connect license This cmdlet provides the following parameter sets: This cmdlet returns an array of NDMP servers and NetApp NDMP servers managed by Veeam Backup & Replication." canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/get-vbrndmpserver.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > Backup Infrastructure > NDMP Servers > Get-VBRNDMPServer" dateModified: "2026-08-19" --- # Get-VBRNDMPServer ## Short Description Returns NDMP servers. **Product Edition**: Enterprise Requires Cloud Connect license ## Syntax This cmdlet provides the following parameter sets: ## Detailed Description This cmdlet returns an array of NDMP servers and NetApp NDMP servers managed by Veeam Backup & Replication. ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Id

Specifies an array of IDs for NDMP servers. The cmdlet will return NDMP servers with these IDs.

Guid[]

True

Named

False

Name

Specifies an array of DNS names or IP addresses of NDMP servers. The cmdlet will return NDMP servers with these DNS names or IP addresses.

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 `VBRNDMPServerBase` object that contains information about the NDMP and NetApp NDMP servers. ## Examples ::: example ### Example 1. Getting NDMP Server by DNS Name This command gets the `NetApp.tech.local` NDMP server. ``` Get-VBRNDMPServer -Name "NetApp.tech.local" ``` ::: ::: example ### Example 2. Getting NDMP Server by Server ID This command gets the `0fccf7c9-1f90-49de-8bec-53a0697e04ab` NDMP server. ``` Get-VBRNDMPServer -ID "0fccf7c9-1f90-49de-8bec-53a0697e04ab" ``` :::