Set-VBRReplicaApplicationProcessingOptions
Short Description
Modifies guest processing settings for Cloud Director replica jobs and CDP policies.
Product Edition: Standard, Enterprise, Enterprise Plus, Veeam Universal License
Syntax
|
Set-VBRReplicaApplicationProcessingOptions -ReplicaApplicationProcessingOptions <VBRReplicaApplicationProcessingOptions> [-GuestInteractionProxy <CHost[]>] [-GuestOSCredentials <CCredentials>] [-ApplicationProcessingOptions <VBRApplicationProcessingOptions[]>] [-IndividualGuestOSCredentials <VBRIndividualGuestOSCredentials[]>] [<CommonParameters>] |
Detailed Description
This cmdlet modifies guest processing settings for Cloud Director replica jobs and CDP policies.
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 |
|---|---|---|---|---|---|
|
ApplicationProcessingOptions |
Specifies application-aware processing settings.
Accepts the |
|
False |
Named |
False |
|
GuestInteractionProxy |
Specifies an arraof of VMs that will be used as guest interaction proxies.
Accepts the |
|
False |
Named |
False |
|
GuestOSCredentials |
Specifies a user account that will be used to connect to VMs added to the Cloud Director replica jobs or CDP policies and deploy the runtime process on their guest OSes.
Accepts the |
|
False |
Named |
False |
|
IndividualGuestOSCredentials |
Specifies a user account that will be used connect to the specific VMs guest OSes.
Accepts the |
|
False |
Named |
False |
|
ReplicaApplicationProcessingOptions |
Specifies guest processing settings that you want to modify.
Accepts the |
|
True |
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 CDP policies.
Examples
Modifying Guest Processing Settings for CDP Policies
This example shows how to assign the CDP Admin user account to the WinSrv2073 VM guest OS.
|
$vm = Find-VBRViEntity -Name "WinSrv2073" $credentials = Get-VBRCredentials -Name "CDP Admin" $oscreds = New-VBRIndividualGuestOSCredentials -IndividualMachine $vm -MachineCredentials $credentials Set-VBRReplicaApplicationProcessingOptions -IndividualGuestOSCredentials $oscreds |
Perform the following steps:
- Run the
Find-VBRViEntityLooks for VMware objects. cmdlet. Specify theNameparameter value. Save the result to the$vmvariable. - Run the
Get-VBRCredentialsReturns credentials records. cmdlet. Specify theNameparameter value. Save the result to the$credentialsvariable. - Run the
New-VBRIndividualGuestOSCredentialsDefines a user account that will be explicitly used to connect to specific machine guest OSes. cmdlet. Specify theIndividualMachineandMachineCredentialsparameters. Save the result to the$oscredsvariable. - Run the
Set-VBRReplicaApplicationProcessingOptionscmdlet. Set the$oscredsvariable as theIndividualGuestOSCredentialsparameter value.
Related Commands
Find-VBRViEntityLooks for VMware objects.Get-VBRCredentialsReturns credentials records.New-VBRIndividualGuestOSCredentialsDefines a user account that will be explicitly used to connect to specific machine guest OSes.