PowerShell/Scripts/list-random-passwords.ps1

39 lines
794 B
PowerShell
Raw Normal View History

2020-05-25 21:21:40 +02:00
#!/snap/bin/powershell
2020-10-10 18:51:57 +02:00
2020-12-22 09:53:12 +01:00
# Syntax: ./list-random-passwords.ps1
# Description: prints a list of random passwords
2020-06-15 14:55:54 +02:00
# Author: Markus Fleschutz
# Source: github.com/fleschutz/PowerShell
# License: CC0
2020-09-29 20:05:52 +02:00
2020-12-22 10:12:50 +01:00
$PasswordLength = 15
$Columns = 6
$Lines = 24
2020-05-02 14:35:58 +02:00
$MinCharCode = 33
$MaxCharCode = 126
2020-12-22 09:53:12 +01:00
function GeneratePassword() {
2020-12-22 10:12:50 +01:00
$Generator = New-Object System.Random
for ($i = 0; $i -lt $PasswordLength; $i++) {
$Result += [char]$Generator.next($MinCharCode,$MaxCharCode)
2020-05-02 14:35:58 +02:00
}
2020-12-22 10:12:50 +01:00
return $Result
2020-05-02 14:35:58 +02:00
}
2020-10-05 13:12:12 +02:00
try {
2020-12-22 10:12:50 +01:00
write-output ""
2020-12-22 09:53:12 +01:00
for ($j = 0; $j -lt $Lines; $j++) {
2020-12-22 10:12:50 +01:00
$Line = ""
2020-12-22 09:53:12 +01:00
for ($k = 0; $k -lt $Columns; $k++) {
2020-12-22 10:12:50 +01:00
$Line += GeneratePassword
$Line += " "
2020-12-14 08:37:21 +01:00
}
2020-12-22 10:12:50 +01:00
write-output $Line
2020-10-05 13:12:12 +02:00
}
2020-12-22 10:12:50 +01:00
write-output ""
2020-10-05 13:12:12 +02:00
exit 0
2020-12-09 10:30:55 +01:00
} catch {
2020-12-22 10:12:50 +01:00
write-error "ERROR in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
2020-12-09 10:30:55 +01:00
exit 1
}