--- title: "Update-VBRServerComponent" description: "This cmdlet upgrades all components on managed servers that are added to the backup infrastructure." canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/update-vbrservercomponent.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > Backup Infrastructure > Server Components Upgrade > Update-VBRServerComponent" dateModified: "2026-08-19" --- # Update-VBRServerComponent ## Short Description Upgrades all components on managed servers. **Product Edition**: Standard, Enterprise, Enterprise Plus, Veeam Universal License ## Syntax ``` Update-VBRServerComponent [-Component ] [-RunAsync] [] ``` ## Detailed Description This cmdlet upgrades all components on managed servers that are added to the backup infrastructure. ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Component

Specifies an array of managed servers. The cmdlet will upgrade all components on these servers.

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

VBRPhysicalHost[]

False

Named

True (ByPropertyName, ByValue)

RunAsync

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

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 ### Example 1. Upgrading all Servers Added to Backup Infrastructure This command upgrades all managed servers that are added to the backup infrastructure. ``` Update-VBRServerComponent ``` ::: ::: example ### Example 2. Upgrading Servers that Require Update This example shows how to upgrade only those managed servers whose components require update. ``` $servers = Get-VBRPhysicalHost -UpdateRequired Update-VBRServerComponent -Component $servers ``` Perform the following steps: 1. Run the [`Get-VBRPhysicalHost`](get-vbrphysicalhost.md) cmdlet. Provide the `UpdateRequired` parameter. Save the result to the `$servers` variable. 2. Run the `Update-VBRServerComponent` cmdlet. Set the `$servers` variable as the `Component` parameter value. ::: ## Related Commands [`Get-VBRPhysicalHost`](get-vbrphysicalhost.md)