Created
March 11, 2019 10:28
-
-
Save MikaelElkiaer/5f118c8f047264ae58e34aa0333d8d86 to your computer and use it in GitHub Desktop.
Generate random letter combination
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-join ((65..90) + (97..122) | Get-Random -Count 20 | % {[char]$_}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment