--- title: "Remove-VBRUnstructuredServer" description: "This cmdlet removes unstructured data sources from the inventory." canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/remove-vbrunstructuredserver.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > Unstructured Data Backup > Working with Unstructured Data Source > Managing Unstructured Data Source > Remove-VBRUnstructuredServer" dateModified: "2026-08-19" --- # Remove-VBRUnstructuredServer ## Short Description Removes unstructured data sources from the inventory. **Product Edition**: Standard, Enterprise, Enterprise Plus, Veeam Universal License ## Syntax ``` Remove-VBRUnstructuredServer -Server [-WhatIf] [-Confirm] [] ``` ## Detailed Description This cmdlet removes unstructured data sources from the inventory. ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Server

Specifies an array of unstructured data sources. The cmdlet will remove these unstructured data sources from the inventory.

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

VBRUnstructuredServer[]

True

Named

True (ByPropertyName, ByValue)

Confirm

Defines that the cmdlet will display a prompt that asks if the user is sure that he wants to continue.

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 ### Example 1. Removing all Unstructured Data Sources This example shows how to remove all unstructured data sources from the inventory. ``` $server = Get-VBRUnstructuredServer Remove-VBRUnstructuredServer -Server $server ``` Perform the following steps: 1. Run the [`Get-VBRUnstructuredServer`](get-vbrunstructuredserver.md) cmdlet. Save the result to the `$server` variable. 2. Run the `Remove-VBRUnstructuredServer` cmdlet. Set the `$server` variable as the `Server` parameter value. ::: ::: example ### Example 2. Removing Certain Unstructured Data Sources from Inventory This example shows how to remove the `\\WinSRV2049\Documents` file share from the inventory. The cmdlet will display a prompt that asks if the user is sure that he wants to continue. ``` $fileshare = Get-VBRUnstructuredServer -Name "\\WinSRV2049\Documents" Remove-VBRUnstructuredServer -Server $fileshare -Confirm ``` Perform the following steps: 1. Run the [`Get-VBRUnstructuredServer`](get-vbrunstructuredserver.md) cmdlet. Specify the `Name` parameter value. Save the result to the `$fileshare` variable. 2. Run the `Remove-VBRUnstructuredServer` cmdlet. Set the `$fileshare` variable as the `Server` parameter value. Provide the `Confirm` parameter. ::: ## Related Commands [`Get-VBRUnstructuredServer`](get-vbrunstructuredserver.md)