--- title: "Remove-VBRNutanixHost" description: "This cmdlet removes a Nutanix Files storage system from the backup infrastructure. Note that the storage itself is not removed." canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/remove-vbrnutanixhost.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > Storage Systems > Nutanix Files Storage Systems > Remove-VBRNutanixHost" dateModified: "2026-08-19" --- # Remove-VBRNutanixHost ## Short Description Removes Nutanix Files storage systems from the backup infrastructure. **Product Edition**: Standard, Enterprise, Enterprise Plus, Veeam Universal License ## Syntax ``` Remove-VBRNutanixHost -Host [-CleanupHost] [-Force] [] ``` ## 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

CleanupHost

Defines that the cmdlet will also delete objects that Veeam Backup & Replication created on the storage system during backup and restore operations: host records, temporary snapshots and thin clones.

If you do not provide this parameter, the cmdlet will keep these objects on the storage system.

SwitchParameter

False

Named

False

Force

Defines that the cmdlet will remove the Nutanix Files storage system without showing warnings in the PowerShell console.

SwitchParameter

False

Named

False

Host

Specifies the storage system that you want to remove.

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

CNutanixHost

True

Named

True (ByPropertyName, ByValue)

`` 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 ### 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`](get-vbrnutanixhost.md) 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`](get-vbrnutanixhost.md)