This is an archive version of the document. To get the most up-to-date information, see the current version.

Set-VBREncryptionKey

In this article

    Short Description

    Modifies encryption key.

    Applies to

    Platform: VMware, Hyper-V

    Product Edition: Standard, Enterprise, Enterprise Plus

    Syntax

    Set-VBREncryptionKey -EncryptionKey <PSCryptoKey> [-Password <securestring>] [-Description <string>] [-WhatIf] [-Confirm] [<CommonParameters>]

    Related Commands

    Get-VBREncryptionKey

    Return Type

    PSCryptoKey

    Detailed Description

    This cmdlet modifies encryption key that was created before. To modify settings, you need to enter the corresponding parameters with new values. The parameters that you omit will remain unchanged.

    This cmdlet accepts SecureString type. Use Microsoft PowerShell standard capabilities to convert your password into the SecureString.

    Parameters

    Parameter

    Description

    Required

    Position

    Accept
    Pipeline
    Input

    Accept
    Wildcard
    Characters

    EncryptionKey

    Specifies the encryption key you want to modify.

    Accepts PSCryptoKey object or description (string).

    0

    0

    True (by Value
    FromPipeline,
    ValueFromPipeline
    ByPropertyName)

    False

    Password

    Specifies the new password you want to apply to the encryption key.

    Accepts SecureString type.

    False

    Named

    False

    False

    Description

    Specifies the new description you want to apply to the encryption key.

    False

    Named

    False

    False

    WhatIf

    Specifies whether the cmdlet writes a message that describes the effects of running the cmdlet without actually performing any action.

    False

    Named

    False

    False

    Confirm

    Specifies whether the cmdlet displays a prompt that asks if the user is sure that they want to continue.

    False

    Named

    False

    False

    <CommonParameters>

    This cmdlet supports Microsoft PowerShell common parameters. For more information about common parameters, see http://go.microsoft.com/fwlink/p/?LinkID=113216.

    Example 1

    This command modifies description of the 'Veeam Administrator' encryption key.

    • The encryption key is obtained by running  Get-VBREncryptionKey and piped down.
    • The new description is set to 'Veeam Tape Backup Administrator'.

    PS C:\PS> Get-VBREncryptionKey -Description "Veeam Administrator" | Set-VBREncryptionKey -Description "Veeam Tape Backup Administrator"

    Example 2

    This command sets a new password to the 'Veeam Administrator' encryption key.

    • The password is turned into a SecureString by running ConvertTo-SecureString and assigned to the '$securepassword' variable.
    • The encryption key is obtained by running  Get-VBREncryptionKey and piped down.

    PS C:\PS> $plainpassword = "VeeamPassword"

    PS C:\PS> $securepassword = $plainpassword | ConvertTo-SecureString -AsPlainText -Force

    PS C:\PS> Get-VBREncryptionKey -Description "Veeam Administrator" | Set-VBREncryptionKey -Password $securepassword