PowerShell/Scripts/list-scripts.ps1

31 lines
842 B
PowerShell
Raw Normal View History

2021-02-09 19:30:45 +01:00
#!/bin/powershell
2020-12-29 15:37:12 +01:00
<#
.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-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-02-10 20:21:32 +01:00
'Script' = "$($Row.Script)"
2021-01-02 12:16:16 +01:00
'Description' = "$($Row.Description)"
}
2020-12-29 15:37:12 +01:00
}
2021-01-28 07:54:49 +01:00
write-progress -completed "Reading $FilePath..."
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 {
2021-02-16 10:03:20 +01:00
write-error "ERROR: line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
2020-12-29 15:37:12 +01:00
exit 1
}