PowerShell/Scripts/password.ps1
2020-10-10 16:51:57 +00:00

28 lines
586 B
PowerShell
Executable File

#!/snap/bin/powershell
# Syntax: ./password.ps1
# Description: generates and prints a single new password
# Author: Markus Fleschutz
# Source: github.com/fleschutz/PowerShell
# License: CC0
$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
}
try {
$password = new_password
write-output $password
exit 0
} catch { Write-Error $Error[0] }
exit 1