mirror of
https://github.com/fleschutz/PowerShell.git
synced 2025-08-09 05:04:39 +02:00
Rename to list-passwords.ps1 and list-pins.ps1
This commit is contained in:
@ -1,10 +1,10 @@
|
||||
<#
|
||||
.SYNOPSIS
|
||||
list-random-passwords.ps1 [<password-length>] [<columns>] [<rows>]
|
||||
list-passwords.ps1 [<password-length>] [<columns>] [<rows>]
|
||||
.DESCRIPTION
|
||||
Prints a list of random passwords
|
||||
.EXAMPLE
|
||||
PS> .\list-random-passwords.ps1
|
||||
PS> .\list-passwords.ps1
|
||||
.LINK
|
||||
https://github.com/fleschutz/PowerShell
|
||||
.NOTES
|
||||
@ -12,7 +12,7 @@
|
||||
License: CC0
|
||||
#>
|
||||
|
||||
param([int]$PasswordLength = 15, [int]$Columns = 6, [int]$Rows = 26)
|
||||
param([int]$PasswordLength = 15, [int]$Columns = 6, [int]$Rows = 30)
|
||||
|
||||
$MinCharCode = 33
|
||||
$MaxCharCode = 126
|
@ -1,10 +1,10 @@
|
||||
<#
|
||||
.SYNOPSIS
|
||||
list-random-pins.ps1 [<pin-length>] [<columns>] [<rows>]
|
||||
list-pins.ps1 [<pin-length>] [<columns>] [<rows>]
|
||||
.DESCRIPTION
|
||||
Prints a list of random PIN's
|
||||
.EXAMPLE
|
||||
PS> .\list-random-pins.ps1
|
||||
PS> .\list-pins.ps1
|
||||
.LINK
|
||||
https://github.com/fleschutz/PowerShell
|
||||
.NOTES
|
||||
@ -12,7 +12,7 @@
|
||||
License: CC0
|
||||
#>
|
||||
|
||||
param([int]$PinLength = 5, [int]$Columns = 12, [int]$Rows = 26)
|
||||
param([int]$PinLength = 5, [int]$Columns = 12, [int]$Rows = 30)
|
||||
|
||||
try {
|
||||
write-output ""
|
Reference in New Issue
Block a user