Copy the KenmoriPSModule folder to the following local folder path.
C:\Program Files\WindowsPowerShell\Modules
These are the commands that are installed by this PS Module.
This is a command to encode url.
This is a command to decode url.
This is a command to escape HTML.
This is a command to unescape HTML.
This is a command to parse QueryString of the HTML.
This is a command to decode SafeLinks generated in Outlook Client.
This is a command to decode Json String.
This is a command to convert the hash to PSObject.
This is a command to convert the array of hash to array of PSObject, so that we can use PowerShell query or Out-GridView for further analysis.
Example) $hasharray | Convert-HashesToPSObjects | Out-GridView
This is a command to convert from string to Base64String
Example) Encode-Base64String "string"
Encode-Base64String "string" -Encode utf-8
This is a command to convert from Base64String to string.
Example) Decode-Base64String "string"
Decode-Base64String "string" -Encode utf-8
This is a command to convert from binary to Base64String text file.
Example) Encode-Base64Binary -InputFile "my.png" -OutFile "my.txt"
This is a command to convert from Base64String text file to the original file.
Example) Decode-Base64Binary -InputFile "my.txt" -OutFile "my.png"