--- title: "Set-VBRIrisProcessingOptions" description: "This cmdlet modifies processing options for a discovered InterSystems IRIS instance. To modify settings, specify new values for the necessary parameters. The cmdlet will overwrite the previous parameter values with new values." canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/set-vbririsprocessingoptions.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > Veeam Plug-Ins for Enterprise Applications, MongoDB Backup and Epic EHR System Protection > Working with Managed Veeam Plug-Ins, MongoDB Backup and Epic EHR System Protection > Application Backup Policy Settings for InterSystems IRIS > Set-VBRIrisProcessingOptions" dateModified: "2026-08-19" --- # Set-VBRIrisProcessingOptions ## Short Description Modifies processing options for discovered InterSystems IRIS instances. **Product Edition**: Enterprise Plus, Veeam Universal License ## Syntax ``` Set-VBRIrisProcessingOptions -Options [-BackupObject ] [-Username ] [] ``` ## Detailed Description This cmdlet modifies processing options for a discovered InterSystems IRIS instance. ::: 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

BackupObject

Specifies the discovered InterSystems IRIS instance for which you want to modify processing options.

Accepts the Object object. To get this object, run the Get-VBRDiscoveredApplication cmdlet.

Object

False

Named

False

Options

Specifies the processing options that you want to modify.

Accepts the VBRIrisProcessingOptions object. To create this object, run the New-VBRIrisProcessingOptions cmdlet.

VBRIrisProcessingOptions

True

Named

True (ByPropertyName, ByValue)

Username

Specifies the user name that Veeam Backup & Replication will use to connect to the InterSystems IRIS instance during processing.

String

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 [`VBRIrisProcessingOptions`](vbririsprocessingoptions.md) object that contains the modified processing options. ## Examples ::: example ### Modifying the User Name in InterSystems IRIS Processing Options This example shows how to change the user name in the processing options of a discovered InterSystems IRIS instance. ``` $iris = Get-VBRDiscoveredApplication -Iris -IrisEntityType IrisInstance $options = New-VBRIrisProcessingOptions -BackupObject $iris[0] -Username "irisadmin" Set-VBRIrisProcessingOptions -Options $options -Username "backupadmin" ``` Perform the following steps: 1. Run the [`Get-VBRDiscoveredApplication`](get-vbrdiscoveredapplication.md) cmdlet. Save the result to the `$iris` variable. 2. Run the [`New-VBRIrisProcessingOptions`](new-vbririsprocessingoptions.md) cmdlet. Save the result to the `$options` variable. 3. Run the `Set-VBRIrisProcessingOptions` cmdlet. Set the `$options` variable as the `Options` parameter value. Specify the `Username` parameter value. ::: ## Related Commands - [`Get-VBRDiscoveredApplication`](get-vbrdiscoveredapplication.md) - [`New-VBRIrisProcessingOptions`](new-vbririsprocessingoptions.md)