Skip to content

Instantly share code, notes, and snippets.

@clly
Created December 11, 2012 00:11
Show Gist options
  • Select an option

  • Save clly/4254577 to your computer and use it in GitHub Desktop.

Select an option

Save clly/4254577 to your computer and use it in GitHub Desktop.
Random Passwords
$rand = New-Object System.Random
1..10 | ForEach {$pass = $pass + [char]$rand.next(33,122)}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment