PowerShell/Docs/list-scripts.md

54 lines
1.3 KiB
Markdown
Raw Normal View History

2022-11-17 20:02:26 +01:00
## The list-scripts.ps1 PowerShell Script
list-scripts.ps1
2021-10-17 14:33:27 +02:00
## Parameters
```powershell
[<CommonParameters>]
This script supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction,
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
```
2022-11-17 20:02:26 +01:00
## Source Code
<#
.SYNOPSIS
Lists all PowerShell scripts in this repository
.DESCRIPTION
This PowerShell script lists all PowerShell scripts in the repository (sorted alphabetically).
.EXAMPLE
PS> ./list-scripts
.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 @{
'PowerShell Script' = "$($Row.Script)"
'Description' = "$($Row.Description)"
}
}
$global:NumScripts = $Table.Count
write-progress -completed "Reading $FilePath..."
}
try {
$PathToRepo = "$PSScriptRoot/.."
ListScripts "$PathToRepo/Data/scripts.csv" | format-table -property "PowerShell Script",Description
"✔️ $($global:NumScripts) PowerShell scripts total"
exit 0 # success
} catch {
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}
2021-10-17 14:33:27 +02:00
*Generated by convert-ps2md.ps1 using the comment-based help of list-scripts.ps1*