################################################################# # Generate AES Secured Password for Scriptng # # Created by - Cameron Joyce # # Last Modified - Dec 25 2016 # ################################################################# # This script is used to generate a secured AES key and password string for use with other automation. # Variables $Key = New-Object Byte[] 32 # AES Key...
Create AES secure passwords for use in PowerShell scripting.
C