Remove-VBRNutanixHost

Short Description

Removes Nutanix Files storage systems from the backup infrastructure.

Applies to

Product Edition: Standard, Enterprise, Enterprise Plus, Veeam Universal License

Syntax

Remove-VBRNutanixHost -Host <CNutanixHost>  [<CommonParameters>]

Detailed Description

This cmdlet removes a Nutanix Files storage system from the backup infrastructure. Note that the storage itself is not removed.

Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Host

Specifies the storage system that you want to remove.

Accepts the CNutanixHost object. To create this object, run the Get-VBRNutanixHost cmdlet.

True

Named

True (ByValue, ByPropertyName)

<CommonParameters>

This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see Microsoft Docs.

Output Object

None.

Examples

Modifying Port Number of Nutanix Files Storage Systems

This example shows how to modify the port number of Nutanix Files Storage Systems.

$host = Get-VBRNutanixHost -Name "Nutanix Files_host"

Remove-VBRNutanixHost -Host $host

Perform the following steps:

  1. Run the Get-VBRNutanixHost cmdlet. Specify the Name parameter value. Save the result to the $host variable.
  2. Run the Remove-VBRNutanixHost cmdlet. Set the $host variable as the Host parameter value.

Related Commands

Get-VBRNutanixHost