ptr0x1 - Overview
Navigation Menu
Pinned Loading
-
2
$fileContent = get-content $fileName
3
$fileContentBytes = [System.Text.Encoding]::UTF8.GetBytes($fileContent)
4
$fileContentEncoded = [System.Convert]::ToBase64String($fileContentBytes)
5
$fileContentEncoded set-content ($fileName + ".b64")