--- title: "Set-VBRIndividualComputerContainer" description: "Modifies a scope of individual computers. Product Edition: Community, Standard, Enterprise, Enterprise Plus, Veeam Universal License This cmdlet modifies the VBRIndividualComputerContainer object." canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/set-vbrindividualcomputercontainer.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > Veeam Agent Management > Working with Protection Groups > Veeam Agent Management Protection Scope > Set-VBRIndividualComputerContainer" dateModified: "2026-08-19" --- # Set-VBRIndividualComputerContainer ## Short Description Modifies a scope of individual computers. **Product Edition**: Community, Standard, Enterprise, Enterprise Plus, Veeam Universal License ## Syntax ``` Set-VBRIndividualComputerContainer -Container [-CustomCredentials ] [] ``` ## Detailed Description This cmdlet modifies the [`VBRIndividualComputerContainer`](vbrindividualcomputercontainer.md) object. This object contains the scope of computers you want to add to a protection group. ::: note To modify settings, specify new values for the necessary parameters. The cmdlet will overwrite the previous parameter values with new values. The parameters that you omit will remain unchanged. ::: ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Container

Specifies the scope of computers you want to add to a protection group.

Accepts the VBRIndividualComputerContainer object. To get this object, run the Get-VBRProtectionGroup cmdlet and use the Container property.

VBRIndividualComputerContainer

True

Named

True (ByPropertyName, ByValue)

CustomCredentials

Specifies individual computers and a method for authenticating them.

Accepts the VBRIndividualComputerCustomCredentials[] object. To get this object, run the New-VBRIndividualComputerCustomCredentials cmdlet.

VBRIndividualComputerCustomCredentials[]

False

Named

True (ByPropertyName)

`` 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 [`VBRIndividualComputerContainer`](vbrindividualcomputercontainer.md) ## Examples ::: example ### Adding Computer to Protection Group This example shows how to add a computer to the `Computers` protection group. ``` $group = Get-VBRProtectionGroup -Name Computers $comp = $group.Container.CustomCredentials $supervisor = New-VBRIndividualComputerCustomCredentials -HostName support.east.local -Credentials support\jsmith $comp += $supervisor $newcomp = Set-VBRIndividualComputerContainer -Container $group.Container -CustomCredentials $comp Set-VBRProtectionGroup -ProtectionGroup $group -Container $newcomp ``` 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. Get individual computers. Use the `Container.CustomCredentials` property of the `$group` variable. Save the result to the `$comp` variable. 3. Run the [`New-VBRIndividualComputerCustomCredentials`](new-vbrindividualcomputercustomcredentials.md) cmdlet. Specify the `HostName` and the `Credentials` parameter values. Save the result to the `$supervisor` variable. 4. Add the computer to the group of computers in the `$comp` variable. Use the `+=` operator. 5. Run the `Set-VBRIndividualComputerContainer` cmdlet. Set the `Container` property of the `$group` variable as the `Container` parameter value. Set the `$comp` variable as the `CustomCredentials` parameter value. Save the result to the `$newcomp` variable. 6. Run the [`Set-VBRProtectionGroup`](set-vbrprotectiongroup.md) cmdlet. Set the `$group` variable as the `ProtectionGroup` parameter value. Set the `$newcomp` variable as the `Container` parameter value. ::: ## Related Commands - [`New-VBRIndividualComputerCustomCredentials`](new-vbrindividualcomputercustomcredentials.md) - [`Get-VBRProtectionGroup`](get-vbrprotectiongroup.md) - [`Set-VBRProtectionGroup`](set-vbrprotectiongroup.md)