You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Mar 5, 2025. It is now read-only.
More often than not, my use cases for base64 involve files. This leads to a large amount of boilerplate code. This could be reduced if support for reading from and writing to files is added to the Base64 cmdlets.
As a user, I would like to use ConvertFrom-Base64 to store the results in a file.
ConvertFrom-Base64-Test 'This is a test'-OutFile 'test.base64.txt'
As a user, I would like to convert UTF-8 text contained in a file to Base64 using ConvertTo-Base64
ConvertTo-Base64-TextFile 'I_Robot.txt'
As a user, I would like to convert a file containing binary data to Base64 using ConvertTo-Base64