PowerShell/Scripts/list-scripts.ps1
2021-02-10 20:21:32 +01:00

31 lines
844 B
PowerShell
Executable File

#!/bin/powershell
<#
.SYNTAX ./list-scripts.ps1
.DESCRIPTION lists the PowerShell scripts in this repository
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
#>
function ListScripts { param([string]$FilePath)
write-progress "Reading $FilePath..."
$Table = import-csv "$FilePath"
foreach($Row in $Table) {
New-Object PSObject -Property @{
'Script' = "$($Row.Script)"
'Description' = "$($Row.Description)"
}
}
write-progress -completed "Reading $FilePath..."
write-output ""
write-output "($($Table.Count) PowerShell scripts total)"
}
try {
$PathToRepo = "$PSScriptRoot/.."
ListScripts "$PathToRepo/Data/scripts.csv" | format-table -property Script, Description
exit 0
} catch {
write-error "ERROR in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}