Rename to list-passwords.ps1 and list-pins.ps1

This commit is contained in:
Markus Fleschutz 2021-08-19 17:08:09 +02:00
parent 415d4a339d
commit f3a23fd987
4 changed files with 10 additions and 10 deletions

View File

@ -117,11 +117,11 @@ list-network-shares.ps1, lists the network shares of the local computer
list-news.ps1, lists the latest news list-news.ps1, lists the latest news
list-os-releases.ps1, lists operating system releases and download URL list-os-releases.ps1, lists operating system releases and download URL
list-os-updates.ps1, lists operating system updates list-os-updates.ps1, lists operating system updates
list-passwords.ps1, prints a list of random passwords
list-pins.ps1, prints a list of random PIN's
list-printers.ps1, lists all printer known to the computer list-printers.ps1, lists all printer known to the computer
list-processes.ps1, lists the local computer processes list-processes.ps1, lists the local computer processes
list-profiles.ps1, lists your PowerShell profiles list-profiles.ps1, lists your PowerShell profiles
list-random-passwords.ps1, prints a list of random passwords
list-random-pins.ps1, prints a list of random PIN's
list-recycle-bin.ps1, lists the content of the recycle bin folder list-recycle-bin.ps1, lists the content of the recycle bin folder
list-scripts.ps1, lists all PowerShell scripts in this repository list-scripts.ps1, lists all PowerShell scripts in this repository
list-services.ps1, lists the services on the local computer list-services.ps1, lists the services on the local computer

Can't render this file because it has a wrong number of fields in line 82.

View File

@ -221,8 +221,8 @@ Mega Collection of PowerShell Scripts
* [list-news.ps1](Scripts/list-news.ps1) - lists the latest news * [list-news.ps1](Scripts/list-news.ps1) - lists the latest news
* [list-os-releases.ps1](Scripts/list-os-releases.ps1) - lists operating system releases and download URL * [list-os-releases.ps1](Scripts/list-os-releases.ps1) - lists operating system releases and download URL
* [list-os-updates.ps1](Scripts/list-os-updates.ps1) - lists operating system updates * [list-os-updates.ps1](Scripts/list-os-updates.ps1) - lists operating system updates
* [list-random-passwords.ps1](Scripts/list-random-passwords.ps1) - prints a list of random passwords * [list-passwords.ps1](Scripts/list-passwords.ps1) - prints a list of random passwords
* [list-random-pins.ps1](Scripts/list-random-pins.ps1) - prints a list of random PIN's * [list-pins.ps1](Scripts/list-pins.ps1) - prints a list of random PIN's
* [list-sql-tables.ps1](Scripts/list-sql-tables.ps1) - lists the SQL server tables * [list-sql-tables.ps1](Scripts/list-sql-tables.ps1) - lists the SQL server tables
* [list-tiobe-index.ps1](Scripts/list-tiobe-index.ps1) - lists the TIOBE index of top programming languages * [list-tiobe-index.ps1](Scripts/list-tiobe-index.ps1) - lists the TIOBE index of top programming languages
* [list-weather.ps1](Scripts/list-weather.ps1) - lists the hourly weather * [list-weather.ps1](Scripts/list-weather.ps1) - lists the hourly weather

View File

@ -1,10 +1,10 @@
<# <#
.SYNOPSIS .SYNOPSIS
list-random-passwords.ps1 [<password-length>] [<columns>] [<rows>] list-passwords.ps1 [<password-length>] [<columns>] [<rows>]
.DESCRIPTION .DESCRIPTION
Prints a list of random passwords Prints a list of random passwords
.EXAMPLE .EXAMPLE
PS> .\list-random-passwords.ps1 PS> .\list-passwords.ps1
.LINK .LINK
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
.NOTES .NOTES
@ -12,7 +12,7 @@
License: CC0 License: CC0
#> #>
param([int]$PasswordLength = 15, [int]$Columns = 6, [int]$Rows = 26) param([int]$PasswordLength = 15, [int]$Columns = 6, [int]$Rows = 30)
$MinCharCode = 33 $MinCharCode = 33
$MaxCharCode = 126 $MaxCharCode = 126

View File

@ -1,10 +1,10 @@
<# <#
.SYNOPSIS .SYNOPSIS
list-random-pins.ps1 [<pin-length>] [<columns>] [<rows>] list-pins.ps1 [<pin-length>] [<columns>] [<rows>]
.DESCRIPTION .DESCRIPTION
Prints a list of random PIN's Prints a list of random PIN's
.EXAMPLE .EXAMPLE
PS> .\list-random-pins.ps1 PS> .\list-pins.ps1
.LINK .LINK
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
.NOTES .NOTES
@ -12,7 +12,7 @@
License: CC0 License: CC0
#> #>
param([int]$PinLength = 5, [int]$Columns = 12, [int]$Rows = 26) param([int]$PinLength = 5, [int]$Columns = 12, [int]$Rows = 30)
try { try {
write-output "" write-output ""