--- title: "Uninstall-VBRDiscoveredComputerComponents" description: "Uninstalls Veeam components from discovered computers. Product Edition: Community, Standard, Enterprise, Enterprise Plus, Veeam Universal License This cmdlet uninstalls Veeam components, including Veeam Agent, from the specified discovered computers." canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/uninstall-vbrdiscoveredcomputercomponents.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > Veeam Agent Management > Managing Protected Computers > Veeam Agent Management Discovered Computers > Uninstall-VBRDiscoveredComputerComponents" dateModified: "2026-08-19" --- # Uninstall-VBRDiscoveredComputerComponents ## Short Description Uninstalls Veeam components from discovered computers. **Product Edition**: Community, Standard, Enterprise, Enterprise Plus, Veeam Universal License ## Syntax ``` Uninstall-VBRDiscoveredComputerComponents -DiscoveredComputer [-RunAsync] [-WhatIf] [-Confirm] [] ``` ## Detailed Description This cmdlet uninstalls Veeam components, including Veeam Agent, from the specified discovered computers. ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

DiscoveredComputer

Specifies the discovered computers from which you want to uninstall Veeam components.

Accepts the array of VBRDiscoveredComputer objects. To get this object, run the Get-VBRDiscoveredComputer cmdlet.

VBRDiscoveredComputer[]

True

Named

True (ByPropertyName, ByValue)

RunAsync

Defines that the cmdlet will run asynchronously.

SwitchParameter

False

Named

True (ByPropertyName)

Confirm

Defines that the cmdlet will display a prompt that asks if you want to continue running the command.

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). ## Output Object The cmdlet returns the `VBRSession` object that contains the uninstall session. ## Examples ::: example ### Uninstalling Veeam Components from Discovered Computers This example shows how to uninstall Veeam components from discovered computers. ``` $computers = Get-VBRDiscoveredComputer Uninstall-VBRDiscoveredComputerComponents -DiscoveredComputer $computers ``` Perform the following steps: 1. Run the [`Get-VBRDiscoveredComputer`](get-vbrdiscoveredcomputer.md) cmdlet. Save the result to the `$computers` variable. 2. Run the `Uninstall-VBRDiscoveredComputerComponents` cmdlet. Set the `$computers` variable as the `DiscoveredComputer` parameter value. ::: ## Related Commands [`Get-VBRDiscoveredComputer`](get-vbrdiscoveredcomputer.md)