2021-09-27 10:38:12 +02:00
|
|
|
|
<#
|
2021-07-13 21:10:02 +02:00
|
|
|
|
.SYNOPSIS
|
2021-10-04 21:29:23 +02:00
|
|
|
|
Lists all PowerShell scripts in this repository
|
2021-07-13 21:10:02 +02:00
|
|
|
|
.DESCRIPTION
|
2022-01-29 12:47:46 +01:00
|
|
|
|
This PowerShell script lists all PowerShell scripts in the repository (sorted alphabetically).
|
2021-07-13 21:10:02 +02:00
|
|
|
|
.EXAMPLE
|
2021-09-24 17:19:49 +02:00
|
|
|
|
PS> ./list-scripts
|
2021-07-13 21:10:02 +02:00
|
|
|
|
.LINK
|
|
|
|
|
https://github.com/fleschutz/PowerShell
|
2022-01-29 12:47:46 +01:00
|
|
|
|
.NOTES
|
|
|
|
|
Author: Markus Fleschutz / License: CC0
|
2020-12-29 15:37:12 +01:00
|
|
|
|
#>
|
|
|
|
|
|
2021-01-28 07:54:49 +01:00
|
|
|
|
function ListScripts { param([string]$FilePath)
|
|
|
|
|
write-progress "Reading $FilePath..."
|
|
|
|
|
$Table = import-csv "$FilePath"
|
2020-12-29 15:37:12 +01:00
|
|
|
|
foreach($Row in $Table) {
|
2021-01-02 12:16:16 +01:00
|
|
|
|
New-Object PSObject -Property @{
|
2021-03-19 17:55:20 +01:00
|
|
|
|
'PowerShell Script' = "$($Row.Script)"
|
2021-01-02 12:16:16 +01:00
|
|
|
|
'Description' = "$($Row.Description)"
|
|
|
|
|
}
|
2020-12-29 15:37:12 +01:00
|
|
|
|
}
|
2021-02-22 20:14:44 +01:00
|
|
|
|
$global:NumScripts = $Table.Count
|
2021-01-28 07:54:49 +01:00
|
|
|
|
write-progress -completed "Reading $FilePath..."
|
2021-01-02 12:16:16 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
try {
|
|
|
|
|
$PathToRepo = "$PSScriptRoot/.."
|
2021-03-19 17:55:20 +01:00
|
|
|
|
ListScripts "$PathToRepo/Data/scripts.csv" | format-table -property "PowerShell Script",Description
|
2021-02-22 20:14:44 +01:00
|
|
|
|
|
2021-08-24 20:46:03 +02:00
|
|
|
|
"✔️ $($global:NumScripts) PowerShell scripts total"
|
2021-09-27 10:09:45 +02:00
|
|
|
|
exit 0 # success
|
2020-12-29 15:37:12 +01:00
|
|
|
|
} catch {
|
2021-09-16 20:19:10 +02:00
|
|
|
|
"⚠️ Error: $($Error[0]) ($($MyInvocation.MyCommand.Name):$($_.InvocationInfo.ScriptLineNumber))"
|
2020-12-29 15:37:12 +01:00
|
|
|
|
exit 1
|
|
|
|
|
}
|