From f3a23fd98764d46a9de94c4963ed8eadebc7dc1f Mon Sep 17 00:00:00 2001 From: Markus Fleschutz Date: Thu, 19 Aug 2021 17:08:09 +0200 Subject: [PATCH] Rename to list-passwords.ps1 and list-pins.ps1 --- Data/scripts.csv | 4 ++-- README.md | 4 ++-- Scripts/{list-random-passwords.ps1 => list-passwords.ps1} | 6 +++--- Scripts/{list-random-pins.ps1 => list-pins.ps1} | 6 +++--- 4 files changed, 10 insertions(+), 10 deletions(-) rename Scripts/{list-random-passwords.ps1 => list-passwords.ps1} (87%) rename Scripts/{list-random-pins.ps1 => list-pins.ps1} (79%) diff --git a/Data/scripts.csv b/Data/scripts.csv index 61f0c64f..ad0bcf89 100644 --- a/Data/scripts.csv +++ b/Data/scripts.csv @@ -117,11 +117,11 @@ list-network-shares.ps1, lists the network shares of the local computer list-news.ps1, lists the latest news list-os-releases.ps1, lists operating system releases and download URL 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-processes.ps1, lists the local computer processes 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-scripts.ps1, lists all PowerShell scripts in this repository list-services.ps1, lists the services on the local computer diff --git a/README.md b/README.md index 9af25045..f9837bae 100644 --- a/README.md +++ b/README.md @@ -221,8 +221,8 @@ Mega Collection of PowerShell Scripts * [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-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-random-pins.ps1](Scripts/list-random-pins.ps1) - prints a list of random PIN's +* [list-passwords.ps1](Scripts/list-passwords.ps1) - prints a list of random passwords +* [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-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 diff --git a/Scripts/list-random-passwords.ps1 b/Scripts/list-passwords.ps1 similarity index 87% rename from Scripts/list-random-passwords.ps1 rename to Scripts/list-passwords.ps1 index 621ed3da..d7af6b6e 100755 --- a/Scripts/list-random-passwords.ps1 +++ b/Scripts/list-passwords.ps1 @@ -1,10 +1,10 @@ <# .SYNOPSIS - list-random-passwords.ps1 [] [] [] + list-passwords.ps1 [] [] [] .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 diff --git a/Scripts/list-random-pins.ps1 b/Scripts/list-pins.ps1 similarity index 79% rename from Scripts/list-random-pins.ps1 rename to Scripts/list-pins.ps1 index 0e905034..8c0f921a 100755 --- a/Scripts/list-random-pins.ps1 +++ b/Scripts/list-pins.ps1 @@ -1,10 +1,10 @@ <# .SYNOPSIS - list-random-pins.ps1 [] [] [] + list-pins.ps1 [] [] [] .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 ""