Set-VBRIrisProcessingOptions
Short Description
Modifies processing options for discovered InterSystems IRIS instances.
Product Edition: Enterprise Plus, Veeam Universal License
Syntax
|
Set-VBRIrisProcessingOptions -Options <VBRIrisProcessingOptions> [-BackupObject <Object>] [-Username <String>] [<CommonParameters>] |
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 |
|
False |
Named |
False |
|
Options |
Specifies the processing options that you want to modify.
Accepts the |
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. |
|
False |
Named |
False |
<CommonParameters>
This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see Microsoft Docs.
Output Object
The cmdlet returns the VBRIrisProcessingOptions object that contains the modified processing options.
Examples
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:
- Run the
Get-VBRDiscoveredApplicationReturns discovered applications from the computer. cmdlet. Save the result to the$irisvariable. - Run the
New-VBRIrisProcessingOptionsDefines processing options for discovered InterSystems IRIS instances. cmdlet. Save the result to the$optionsvariable. - Run the
Set-VBRIrisProcessingOptionscmdlet. Set the$optionsvariable as theOptionsparameter value. Specify theUsernameparameter value.
Related Commands
Get-VBRDiscoveredApplicationReturns discovered applications from the computer.New-VBRIrisProcessingOptionsDefines processing options for discovered InterSystems IRIS instances.