Skip to content

Instantly share code, notes, and snippets.

@owenmurr
Last active December 14, 2020 09:57
Show Gist options
  • Save owenmurr/5d9294ec8a8d82c5f799ae123d43c1ab to your computer and use it in GitHub Desktop.
Save owenmurr/5d9294ec8a8d82c5f799ae123d43c1ab to your computer and use it in GitHub Desktop.
Random alphanumeric string with uppercase and lowercase letters and a few special characters ASCII table numbers
-join (((48..57)+(65..90)+(97..122)+(33..46)) * 80 |Get-Random -Count 25 |%{[char]$_})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment