Set-VBREncryptedTapeMediumPassword
Short Description
Decrypts encrypted backups stored on tapes.
Product Edition: Enterprise
Syntax
This cmdlet provides the following parameter sets:
-
PasswordDecryption (Default)Set-VBREncryptedTapeMediumPassword -Medium <VBRTapeMedium[]> -Password <String[]> [-PassThru] [<CommonParameters>]
-
KmsDecryptionSet-VBREncryptedTapeMediumPassword -Medium <VBRTapeMedium[]> -DecryptionSet <VBRDecryptionSet[]> [-PassThru] [<CommonParameters>]
Detailed Description
This cmdlet decrypts selected encrypted backups stored on tapes.
Parameters
|
Parameter |
Description |
Type |
Required |
Position |
Accept Pipeline Input |
|---|---|---|---|---|---|
|
DecryptionSet |
Specifies the data decryption settings if the KMS Server was used for encryption.
Accepts the |
True |
Named |
True (ByPropertyName) |
|
|
Medium |
Specifies the tape that contains the encrypted backup that you want to decrypt.
Accepts the |
True |
Named |
True (ByPropertyName, ByValue) |
|
|
PassThru |
Defines that the command returns the output object to the Windows PowerShell console. |
|
False |
Named |
False |
|
Password |
Specifies the password. Veeam Backup & Replication will use that password to decrypt the backups. |
|
True |
Named |
True (ByPropertyName) |
<CommonParameters>
This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see Microsoft Docs.
Output Object
VBREncryptedTapeMediumPassword
Examples
Decrypting Encrypted Backups on Tapes
This example shows how to decrypt encrypted backups stored on tapes.
|
$tape = Get-VBRTapeMedium -Name "00110001" Set-VBREncryptedTapeMediumPassword -Medium $tape -Password "SecurePassword" |
Perform the following steps:
- Run the
Get-VBRTapeMediumReturns tapes. cmdlet to get the tape. Specify theNameparameter value. Save the result to the$tapevariable. - Run the
Set-VBREncryptedTapeMediumPasswordcmdlet. Set the$tapevariable as theMediumparameter value. Specify thePasswordparameter value.
Related Commands
Get-VBRTapeMediumReturns tapes.New-VBRDecryptionSetDefines data decryption settings.