Skip to content

Instantly share code, notes, and snippets.

@mattbalzan
Created January 24, 2025 16:14
Show Gist options
  • Select an option

  • Save mattbalzan/5dcc2745998f269ff9bd5f3d4986bdff to your computer and use it in GitHub Desktop.

Select an option

Save mattbalzan/5dcc2745998f269ff9bd5f3d4986bdff to your computer and use it in GitHub Desktop.
Encode XML to Base64
$xml = gc C:\appassoc.xml
$enc = [System.Text.Encoding]::Unicode.GetBytes($xml)
$encXML = [Convert]::ToBase64String($enc)
$encXML
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment