New-VBRReplicaApplicationProcessingOptions
Short Description
Defines guest processing settings for Cloud Director replica jobs and CDP policies.
Applies to
Product Edition: Standard, Enterprise, Enterprise Plus, Veeam Universal License
Syntax
New-VBRReplicaApplicationProcessingOptions [-GuestInteractionProxy <CHost[]>] [-GuestOSCredentials <CCredentials>] [-ApplicationProcessingOptions <VBRApplicationProcessingOptions[]>] [-IndividualGuestOSCredentials <VBRIndividualGuestOSCredentials[]>] [<CommonParameters>] |
Detailed Description
This cmdlet defines the VBRReplicaApplicationProcessingOptions object. This object defines guest processing settings for Cloud Director replica jobs and CDP policies.
Parameters
Parameter | Description | Type | Required | Position | Accept Pipeline Input |
---|---|---|---|---|---|
GuestInteractionProxy | Specifies an array of VMs that will be used as guest interaction proxies. | Accepts the CHost[] object. To create this object, run the Get-VBRServer cmdlet. | False | Named | False |
GuestOSCredentials | Specifies a user account that will be used to connect to VMs added to the job and deploy a runtime process on their guest OSes. | Accepts the CCredentials object. To create this object, run the Get-VBRCredentials cmdlet. | False | Named | False |
ApplicationProcessingOptions | Specifies an array of application-aware processing settings. | Accepts the VBRApplicationProcessingOptions[] object. To create this object, run the New-VBRApplicationProcessingOptions cmdlet. | False | Named | False |
IndividualGuestOSCredentials | Specifies a user account that will used to connect to the specific machine guest OS. | Accepts the VBRIndividualGuestOSCredentials[] object. To create this object, run the New-VBRIndividualGuestOSCredentials cmdlet. | 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 VBRReplicaApplicationProcessingOptions object that defines guest processing settings for a CDP policy.
Examples
Defining Guest Interaction Proxy for CDP Policy Guest Processing Settings
This example shows how to define the WinG2073 machine as a guest interaction proxy for guest processing settings of a CDP policy.
$proxy = Get-VBRServer -Name "WinG2073" New-VBRReplicaApplicationProcessingOptions -GuestInteractionProxy $proxy |
Perform the following steps:
- Run the Get-VBRServer cmdlet. Specify the Name parameter value. Save the result to the $proxy variable.
- Run the New-VBRReplicaApplicationProcessingOptions cmdlet. Set the $proxy variable as the GuestInteractionProxy parameter value.
Related Commands