--- title: "Remove-StoragePluginHost" description: "This cmdlet removes a selected storage from Veeam Backup & Replication console. The storage is not deleted from the server where it was created. When you remove a storage, you stop managing it in your Veeam Backup & Replication console." canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/remove-storagepluginhost.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > Storage Systems > Universal Storage API Integrated Systems > Remove-StoragePluginHost" dateModified: "2026-08-19" --- # Remove-StoragePluginHost ## Short Description Removes Universal Storage API integrated systems from Veeam Backup & Replication console. **Platform**: VMware **Product Edition**: Standard, Enterprise, Enterprise Plus, Veeam Universal License **Storage System**: IBM Spectrum Virtualize, INFINIDAT InfiniBox, Pure Storage ## Syntax ``` Remove-StoragePluginHost -Host [-CleanupHost] [-Force] [] ``` ## Detailed Description This cmdlet removes a selected storage from Veeam Backup & Replication console. The storage is not deleted from the server where it was created. When you remove a storage, you stop managing it in your Veeam Backup & Replication console. ## 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 storage without showing warnings in the PowerShell console.

SwitchParameter

False

Named

False

Host

Specifies the storage you want to remove.

Accepts the CPublicPluginHost object. To get the object, run the Get-StoragePluginHost cmdlet.

CPublicPluginHost

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 ### Removing Selected Storage This example shows how to remove a selected storage from Veeam Backup & Replication console. ``` $storage = Get-StoragePluginHost -Name "IBM Spectrum" Remove-StoragePluginHost -Host $storage ``` Perform the following steps: 1. Run the [`Get-StoragePluginHost`](get-storagepluginhost.md) cmdlet. Specify the `Name` parameter value. Save the result to the `$storage` variable. 2. Run the `Remove-StoragePluginHost` cmdlet. Set the `$storage` variable as the `Host` parameter value. ::: ## Related Commands [`Get-StoragePluginHost`](get-storagepluginhost.md)