Sample code for 30+ languages & platforms
PowerShell

Decode Base64

Demonstrates how to decode base64.

Chilkat PowerShell Downloads

PowerShell
Add-Type -Path "C:\chilkat\ChilkatDotNet47-x64\ChilkatDotNet47.dll"

$success = $false

$bd = New-Object Chilkat.BinData

# Append a base64 string to bd.
$success = $bd.AppendEncoded("c2VjcmV0","base64")

# The bd now contains the decoded bytes.
# Let's say it was a password string..
$password = $bd.GetString("utf-8")

# Decodes to "secret".
$("password = " + $password)