New-VBRIrisContainer

Short Description

Defines containers of InterSystems IRIS servers for protection groups.

Applies to

Product Edition: Enterprise Plus, Veeam Universal License

Syntax

New-VBRIrisContainer -Credentials <VBRIndividualComputerCustomCredentials[]>  [<CommonParameters>]

Detailed Description

This cmdlet creates the VBRIrisContainer object that contains InterSystems IRIS servers added by custom credentials.

Use this object to add a protection group of InterSystems IRIS servers with the Add-VBRProtectionGroup cmdlet.

Parameters

Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Credentials

Specifies the credentials to authenticate against the InterSystems IRIS servers that you want to add to the container.

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

True

Named

True (ByPropertyName, ByValue)

<CommonParameters>

This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see Microsoft Docs.

Output Object

The cmdlet returns the VBRIrisContainer object that contains InterSystems IRIS servers.

Examples

Creating an InterSystems IRIS Container

This example shows how to create a container of InterSystems IRIS servers.

$creds = Get-VBRCredentials -Name "iris\\administrator"

$customCreds = New-VBRIndividualComputerCustomCredentials -HostName "172.18.21.25" -Credentials $creds

$container = New-VBRIrisContainer -Credentials $customCreds

Perform the following steps:

  1. Run the Get-VBRCredentials cmdlet. Save the result to the $creds variable.
  2. Run the New-VBRIndividualComputerCustomCredentials cmdlet. Save the result to the $customCreds variable.
  3. Run the New-VBRIrisContainer cmdlet. Set the $customCreds variable as the Credentials parameter value. Save the result to the $container variable to use with other cmdlets.

Related Commands

Page updated 2026-06-18

Page content applies to build 13.1.0.411