Convert string to base64
Version : 1.0
File Name : base64.ps1
Author : Adewale Azeez - iamthecarisma@gmail.com
Date : 2020
Convert a string to it base64 value, write the base64 result into a file, copy it to clipboard or generates a valid JSON Object.
base64s [-InputString] <String> [-ToJson] [-AndCopyToClipboard]
[-WriteToFile] [<CommonParameters>]
attr |
value |
---|---|
Required? |
true |
Position? |
1 |
Default value |
|
Accept pipeline input? |
false |
Accept wildcard characters? |
false |
attr |
value |
---|---|
Required? |
false |
Position? |
named |
Default value |
False |
Accept pipeline input? |
false |
Accept wildcard characters? |
false |
attr |
value |
---|---|
Required? |
false |
Position? |
named |
Default value |
False |
Accept pipeline input? |
false |
Accept wildcard characters? |
false |
attr |
value |
---|---|
Required? |
false |
Position? |
named |
Default value |
False |
Accept pipeline input? |
false |
Accept wildcard characters? |
false |
This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters (https:/go.microsoft.com/fwlink/?LinkID=113216).
The string to get it base64 value
Depends on switches
base64 "Normal String here" -WriteToFile
The command encodes the string in base64 and writes it to file ‘str.base64’ in working directory where this script was executed
base64s "Normal String here" -AndCopyToClipboard
The command encodes the string in base64 and copies the base64 value to clipboard
base64 "Normal String here" -ToJson
The command encodes the string in base64 and generates a valid JSON object of the base64 value