Added password.ps1

This commit is contained in:
Markus Fleschutz 2020-05-02 12:42:17 +00:00
parent c4d09b6567
commit 17c7f0453e
2 changed files with 25 additions and 0 deletions

25
password.ps1 Normal file
View File

@ -0,0 +1,25 @@
# PowerShell Script to Create New Passwords
# -----------------------------------------
# Author: Markus Fleschutz
# Source: github.com/fleschutz/PowerShell
# License: CC0
$NumPasswords = 1
$CharsPerPassword = 15
$MinCharCode = 33
$MaxCharCode = 126
function new_password() {
$password = ""
$generator = New-Object System.Random
for ($i = 0; $i -lt $CharsPerPassword; $i++) {
$password = $password +[char]$generator.next($MinCharCode,$MaxCharCode)
}
return $password
}
for ($j = 0; $j -lt $NumPasswords; $j++) {
$password = new_password
write-output $password
}
exit 0