PowerShell/Scripts/list-scripts.ps1

31 lines
835 B
PowerShell
Raw Normal View History

2020-12-29 15:37:12 +01:00
#!/snap/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
#>
2021-01-02 12:16:16 +01:00
function ListScripts { param([string]$Path)
write-progress "Reading $Path..."
$Table = import-csv "$Path"
2020-12-29 15:37:12 +01:00
foreach($Row in $Table) {
2021-01-02 12:16:16 +01:00
New-Object PSObject -Property @{
'Script' = "$($Row.Filename)"
'Description' = "$($Row.Description)"
}
2020-12-29 15:37:12 +01:00
}
2021-01-09 12:36:37 +01:00
write-progress -completed "Reading $Path..."
2021-01-02 12:16:16 +01:00
write-output ""
write-output "($($Table.Count) PowerShell scripts total)"
}
try {
$PathToRepo = "$PSScriptRoot/.."
ListScripts "$PathToRepo/Data/scripts.csv" | format-table -property Script, Description
2020-12-29 15:37:12 +01:00
exit 0
} catch {
write-error "ERROR in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}