This is an archive version of the document. To get the most up-to-date information, see the current version.

Remove-VBRNDMPServer

Short Description

Removes NDMP servers from Veeam Backup & Replication.

Applies to

Product Edition: Enterprise

Requires Cloud Connect license

Syntax

Remove-VBRNDMPServer -Server <VBRNDMPServer[]> [-WhatIf] [-Confirm]  [<CommonParameters>]

Detailed Description

This cmdlet removes NDMP servers from Veeam Backup & Replication. When you remove the NDMP serevr 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, i.e. the backup files.

Parameters

Parameter

Description

Required

Position

Accept
Pipeline
Input

Accept
Wildcard
Characters

Server

Specifies the NDMP server that you want to remove.

Accepts the VBRNDMPServer type.

True

Named

False

False

WhatIf

Specifies whether the cmdlet writes a message that describes the effects of running the cmdlet without actually performing any action.

False

Named

False

False

Confirm

Specifies whether the cmdlet displays a prompt that asks if the users are sure that they want to continue.

False

Named

False

False

<CommonParameters>

This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see the About CommonParameters section of Microsoft Docs.

.Return Type

Example

This example shows how to remove an NDMP server from Veeam Backup & Replication.

  1. Run Get-VBRNDMPServer to get the NDMP server that you want to remove. Save the result to the $ndmp variable.
  2. Run Remove-VBRNDMPServer with the $ndmp variable.

$ndmp = Get-VBRNDMPServer -Name "NetApp.tech.local"

Remove-VBRNDMPServer -Server $ndmp

Related Commands

Get-VBRNDMPServer