mirror of
https://github.com/fleschutz/PowerShell.git
synced 2025-01-23 14:18:38 +01:00
Added password.ps1
This commit is contained in:
parent
c4d09b6567
commit
17c7f0453e
25
password.ps1
Normal file
25
password.ps1
Normal 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
|
Loading…
Reference in New Issue
Block a user