|
|
|
|
|
by _b8r0
4721 days ago
|
|
Ask and ye shall receive (in powershell form): $fName = "last.exe"
$fContent = get-content $fName
$fContentBytes = [System.Text.Encoding]::UTF8.GetBytes($fContent)
$fContentEncoded = [System.Convert]::ToBase64String($fContentBytes)
$fContentEncoded set-content ($fName + ".text")
Now you can at least say that all your .exes live in base64-encoded .texts. |
|