--- title: "Reset-VBRDiscoveredComputer" description: "Reboots discovered computers. Product Edition: Community, Standard, Enterprise, Enterprise Plus, Veeam Universal License This cmdlet reboots selected discovered computers." canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/reset-vbrdiscoveredcomputer.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > Veeam Agent Management > Managing Protected Computers > Veeam Agent Management Discovered Computers > Reset-VBRDiscoveredComputer" dateModified: "2026-08-19" --- # Reset-VBRDiscoveredComputer ## Short Description Reboots discovered computers. **Product Edition**: Community, Standard, Enterprise, Enterprise Plus, Veeam Universal License ## Syntax ``` Reset-VBRDiscoveredComputer -DiscoveredComputer [-RunAsync] [-WhatIf] [-Confirm] [] ``` ## Detailed Description This cmdlet reboots selected discovered computers. ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

DiscoveredComputer

Specifies the array of discovered computers. The cmdlet will reboot these computers.

Accepts the VBRDiscoveredComputer[[]](vbrdiscoveredcomputer.md) object. To get this object, run the Get-VBRDiscoveredComputer cmdlet.

VBRDiscoveredComputer[]

True

Named

True (ByPropertyName, ByValue)

RunAsync

Defines that the command returns immediately without waiting for the task to complete.

SwitchParameter

False

Named

True (ByPropertyName)

Confirm

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

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 [`VBRSession`](vbrsession.md) ## Examples ::: example ### Rebooting Discovered Computers of Protection Group This example shows how to reboot discovered computers of a protection group. ``` $group = Get-VBRProtectionGroup -Name "East Support" $discovered = Get-VBRDiscoveredComputer -ProtectionGroup $group Reset-VBRDiscoveredComputer -DiscoveredComputer $discovered ``` Perform the following steps: 1. Run the [`Get-VBRProtectionGroup`](get-vbrprotectiongroup.md) cmdlet. Specify the `Name` parameter value. Save the result to the `$group` variable. 2. Run the [`Get-VBRDiscoveredComputer`](get-vbrdiscoveredcomputer.md) cmdlet. Set the `$group` variable as the `ProtectionGroup` parameter value. Save the result to the `$discovered` variable. 3. Run the `Reset-VBRDiscoveredComputer` cmdlet. Set the `$discovered` variable as the `DiscoveredComputer` parameter value. ::: ## Related Commands - [`Get-VBRProtection`](get-vbrprotectiongroup.md) - [`Get-VBRDiscoveredComputer`](get-vbrdiscoveredcomputer.md)