3 Answers
You could take the base64 output and then perform the following:
$EncodedText = “VABoAGkAcwAgAGkAcwAgAGEAIABzAGUAYwByAGUAdAAgAGEAbgBkACAAcwBoAG8AdQBsAGQAIABiAGUAIABoAGkAZABlAG4A”
$DecodedText = [System.Text.Encoding]::Unicode.GetString([System.Convert]::FromBase64String($EncodedText))
$DecodedText
I changed the base64 -D in the script to lower case -d and issue is fixed. Hope this helps!
that fixed the error. Thanks!