qnd:data_manipulation

This is an old revision of the document!


Data Manipulation

Base64

Powershell to encode/decode base64

encode

[System.Text.Encoding]::UTF8.GetString([System.Convert]::FromBase64String((Get-Content data.txt)))

decode

[System.Convert]::ToBase64String([System.Text.Encoding]::UTF8.GetBytes((Get-Content data.txt))
  • qnd/data_manipulation.1677710376.txt.gz
  • Last modified: 2023/03/01 22:39
  • by mgupton