mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-11-09 01:25:04 +01:00
39 lines
804 B
PowerShell
Executable File
39 lines
804 B
PowerShell
Executable File
#!/bin/powershell
|
|
<#
|
|
.SYNTAX ./list-random-passwords.ps1
|
|
.DESCRIPTION prints a list of random passwords
|
|
.LINK https://github.com/fleschutz/PowerShell
|
|
.NOTES Author: Markus Fleschutz / License: CC0
|
|
#>
|
|
|
|
$PasswordLength = 15
|
|
$Columns = 6
|
|
$Lines = 24
|
|
$MinCharCode = 33
|
|
$MaxCharCode = 126
|
|
|
|
function GeneratePassword {
|
|
$Generator = New-Object System.Random
|
|
for ($i = 0; $i -lt $PasswordLength; $i++) {
|
|
$Result += [char]$Generator.next($MinCharCode,$MaxCharCode)
|
|
}
|
|
return $Result
|
|
}
|
|
|
|
try {
|
|
write-output ""
|
|
for ($j = 0; $j -lt $Lines; $j++) {
|
|
$Line = ""
|
|
for ($k = 0; $k -lt $Columns; $k++) {
|
|
$Line += GeneratePassword
|
|
$Line += " "
|
|
}
|
|
write-output $Line
|
|
}
|
|
write-output ""
|
|
exit 0
|
|
} catch {
|
|
write-error "ERROR: line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
|
exit 1
|
|
}
|