PowerShell/Scripts/list-scripts.ps1

36 lines
853 B
PowerShell
Raw Normal View History

2021-09-27 10:38:12 +02:00
<#
2021-07-13 21:10:02 +02:00
.SYNOPSIS
Lists all PowerShell scripts
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
2023-08-06 21:35:36 +02:00
PS> ./list-scripts.ps1
2021-07-13 21:10:02 +02:00
.LINK
https://github.com/fleschutz/PowerShell
2022-01-29 12:47:46 +01:00
.NOTES
2022-09-06 21:42:04 +02:00
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"
[int]$No = 1
foreach($row in $table) {
2021-01-02 12:16:16 +01:00
New-Object PSObject -Property @{
'No' = $No++
'Script' = $row.SCRIPT
'Description' = $row.DESCRIPTION
2021-01-02 12:16:16 +01:00
}
2020-12-29 15:37:12 +01:00
}
2021-02-22 20:14:44 +01:00
$global:NumScripts = $Table.Count
Write-Progress -completed "."
2021-01-02 12:16:16 +01:00
}
try {
ListScripts "$PSScriptRoot/../Data/scripts.csv" | Format-Table -property No,Script,Description
2021-09-27 10:09:45 +02:00
exit 0 # success
2020-12-29 15:37:12 +01:00
} catch {
2022-04-13 12:06:32 +02:00
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
2020-12-29 15:37:12 +01:00
exit 1
}