base64 with Bash Cheat Sheet for use with bash shell. Encode echo 'TEXT_TO_ENCODE' | base64 Decode echo 'TEXT_TO_DECODE' | base64 -d
Base64 with Powershell Cheat Sheet for use with powershell task automation framework. Encode [System.Convert]:: ToBase64String([System.Text.Encoding]:: UTF8.GetBytes("MY_PLAIN_TEXT")) Decode [System.Text.Encoding]:: UTF8.GetString([System.Convert]:: FromBase64String("MY_ENCODED_TEXT"))