Veeam导出凭据中存储的密码

在当前安装Veeam的服务器上使用PowerShell执行以下命令,$context后面粘贴数据库中的密文密码

Add-Type -AssemblyName 'system.security'
$context = '<encrypted-password-value-from-database>'
$data = [Convert]::FromBase64String($context)
$raw = [System.Security.Cryptography.ProtectedData]::Unprotect($data, $null, [System.Security.Cryptography.DataProtectionScope]::LocalMachine)
[System.Text.Encoding]::UTF8.GetString($raw)

来源:https://www.veeam.com/kb4349