Set-PASVRMServiceConfig

Set-PASVRMServiceConfig

SYNOPSIS

Sets one or multiple DR configuration parameters

SYNTAX

Set-PASVRMServiceConfig [[-BaseURI] <String>] [-parameters] <Hashtable> [-serviceName] <String>
 [-serverAddress] <String> [[-serviceUserName] <String>] [-servicePassword] <SecureString> [-WhatIf] [-Confirm]
 [<CommonParameters>]

DESCRIPTION

Sets one or more Disaster Recovery configuration parameters on the VRM service. Use this command to configure DR replication settings and other operational parameters. Requires authentication with the PARAgent service credentials and supports WhatIf for testing.

EXAMPLES

Example 1

PS C:\> $password = ConvertTo-SecureString -String 'P@ssw0rd' -AsPlainText -Force
PS C:\> $params = @{ 'ReplicationInterval' = '300'; 'MaxRetries' = '5' }
PS C:\> Set-PASVRMServiceConfig -parameters $params -serviceName DR -serverAddress dr-vault.company.com -servicePassword $password

Sets multiple DR configuration parameters on the specified server

PARAMETERS

-BaseURI

The URL of the PVWA server. If not specified, uses the BaseURI from New-PASSession

Type: String
Parameter Sets: (All)
Aliases:

Required: False
Position: 1
Default value: None
Accept pipeline input: True (ByPropertyName)
Accept wildcard characters: False

-parameters

A hashtable of configuration parameters to set. Keys are parameter names, values are the desired settings

Type: Hashtable
Parameter Sets: (All)
Aliases:

Required: True
Position: 2
Default value: None
Accept pipeline input: True (ByPropertyName)
Accept wildcard characters: False

-serviceName

The name of the service to configure. Supported services: Vault, DR

Type: String
Parameter Sets: (All)
Aliases:

Required: True
Position: 3
Default value: None
Accept pipeline input: True (ByPropertyName)
Accept wildcard characters: False

-serverAddress

The IP address or hostname of the Primary Vault or DR Vault server

Type: String
Parameter Sets: (All)
Aliases:

Required: True
Position: 4
Default value: None
Accept pipeline input: True (ByPropertyName)
Accept wildcard characters: False

-serviceUserName

The PARAgent user name. Defaults to Administrator

Type: String
Parameter Sets: (All)
Aliases:

Required: False
Position: 5
Default value: Administrator
Accept pipeline input: True (ByPropertyName)
Accept wildcard characters: False

-servicePassword

The PARAgent password as a SecureString

Type: SecureString
Parameter Sets: (All)
Aliases:

Required: True
Position: 6
Default value: None
Accept pipeline input: True (ByPropertyName)
Accept wildcard characters: False

-WhatIf

Shows what would happen if the cmdlet runs. The cmdlet is not run.

Type: SwitchParameter
Parameter Sets: (All)
Aliases: wi

Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False

-Confirm

Prompts you for confirmation before running the cmdlet.

Type: SwitchParameter
Parameter Sets: (All)
Aliases: cf

Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False

CommonParameters

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

INPUTS

OUTPUTS

NOTES