Skip to content

Instantly share code, notes, and snippets.

View mattbalzan's full-sized avatar
🏠
Working from home

mattGPT mattbalzan

🏠
Working from home
View GitHub Profile
@mattbalzan
mattbalzan / URI encoder.ps1
Last active January 6, 2025 10:48
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