2021-02-09 19:30:45 +01:00
|
|
|
#!/bin/powershell
|
2020-12-29 15:14:21 +01:00
|
|
|
<#
|
|
|
|
.SYNTAX ./list-random-passwords.ps1
|
|
|
|
.DESCRIPTION prints a list of random passwords
|
|
|
|
.LINK https://github.com/fleschutz/PowerShell
|
|
|
|
.NOTES Author: Markus Fleschutz / License: CC0
|
|
|
|
#>
|
2020-10-10 18:51:57 +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
|
|
|
|
|
2021-01-27 15:12:17 +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 {
|
2021-02-16 10:03:20 +01:00
|
|
|
write-error "ERROR: line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
2020-12-09 10:30:55 +01:00
|
|
|
exit 1
|
|
|
|
}
|