mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-11-12 19:14:33 +01:00
31 lines
835 B
PowerShell
Executable File
31 lines
835 B
PowerShell
Executable File
#!/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
|
|
#>
|
|
|
|
function ListScripts { param([string]$Path)
|
|
write-progress "Reading $Path..."
|
|
$Table = import-csv "$Path"
|
|
foreach($Row in $Table) {
|
|
New-Object PSObject -Property @{
|
|
'Script' = "$($Row.Filename)"
|
|
'Description' = "$($Row.Description)"
|
|
}
|
|
}
|
|
write-progress -completed "Reading $Path..."
|
|
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
|
|
}
|