Skip to content

Instantly share code, notes, and snippets.

@mattbalzan
Last active January 6, 2025 10:48
Show Gist options
  • Save mattbalzan/64ca01b9c422f79fdb4e2ba2839b3db2 to your computer and use it in GitHub Desktop.
Save mattbalzan/64ca01b9c422f79fdb4e2ba2839b3db2 to your computer and use it in GitHub Desktop.
URI encoder
# --[ Encode URI to base64 ]
# --[ Matt Balzan | mattGPT.co.uk ]
$url = '<your_URI>'
$enc = [System.Text.Encoding]::Unicode.GetBytes($url)
$encURL = [Convert]::ToBase64String($enc)
$encURL
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment