--- title: "Remove-VBRNDMPServer" description: "Removes NDMP and NetApp NDMP servers from the backup infrastructure. Product Edition: Enterprise Requires Cloud Connect license This cmdlet removes NDMP servers and NetApp NDMP servers from the backup infrastructure." canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/remove-vbrndmpserver.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > Backup Infrastructure > NDMP Servers > Remove-VBRNDMPServer" dateModified: "2026-08-19" --- # Remove-VBRNDMPServer ## Short Description Removes NDMP and NetApp NDMP servers from the backup infrastructure. **Product Edition**: Enterprise Requires Cloud Connect license ## Syntax ``` Remove-VBRNDMPServer -Server [-WhatIf] [-Confirm] [] ``` ## Detailed Description This cmdlet removes NDMP servers and NetApp NDMP servers from the backup infrastructure. When you remove the NDMP server from Veeam Backup & Replication you stop managing it via your Veeam Backup & Replication console. You do not delete the NDMP server itself as well as data stored on it, for example, the backup files. ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Server

Specifies the NDMP server that you want to remove.

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

VBRNDMPServerBase[]

True

Named

False

Confirm

Defines that the cmdlet will display a prompt that asks if you want to continue running the command.

Note: Microsoft PowerShell enables the Confirm parameter for this cmdlet by default. To disable this option, set the parameter value to $false. That is, Confirm:$false.

SwitchParameter

False

Named

False

WhatIf

Defines that the cmdlet will write a message that describes the effects of running the cmdlet without actually performing any action.

SwitchParameter

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). ## Examples ::: example ### Removing NDMP Server from Backup Infrastructure This example shows how to remove an NDMP server from the backup infrastructure. ``` $ndmp = Get-VBRNDMPServer -Name "NetApp.tech.local" Remove-VBRNDMPServer -Server $ndmp ``` Perform the following steps: 1. Run the [`Get-VBRNDMPServer`](get-vbrndmpserver.md) cmdlet. Specify the `Name` parameter values. Save the result to the `$ndmp` variable. 2. Run the `Remove-VBRNDMPServer` cmdlet. Set the `$ndmp` variable as the `Server` parameter value. ::: ## Related Commands [`Get-VBRNDMPServer`](get-vbrndmpserver.md)