PowerShell/Scripts/list-random-passwords.ps1

32 lines
799 B
PowerShell
Raw Normal View History

2020-12-29 15:14:21 +01:00
<#
.SYNTAX list-random-passwords.ps1 [<password-length>] [<columns>] [<rows>]
2021-03-22 20:10:18 +01:00
.DESCRIPTION prints a list of random passwords
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
2020-12-29 15:14:21 +01:00
#>
2020-10-10 18:51:57 +02:00
param([int]$PasswordLength = 15, [int]$Columns = 6, [int]$Rows = 26)
2020-05-02 14:35:58 +02:00
$MinCharCode = 33
$MaxCharCode = 126
2020-10-05 13:12:12 +02:00
try {
2020-12-22 10:12:50 +01:00
write-output ""
2021-04-14 13:44:59 +02:00
$Generator = New-Object System.Random
for ($j = 0; $j -lt $Rows; $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++) {
2021-04-14 13:44:59 +02:00
for ($i = 0; $i -lt $PasswordLength; $i++) {
$Line += [char]$Generator.next($MinCharCode,$MaxCharCode)
}
2020-12-22 10:12:50 +01:00
$Line += " "
2020-12-14 08:37:21 +01:00
}
2021-04-14 13:44:59 +02: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-05-02 21:30:48 +02:00
write-error "⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
2020-12-09 10:30:55 +01:00
exit 1
}