2023-07-29 10:04:38 +02:00
|
|
|
PS> *list-scripts.ps1*
|
|
|
|
====================
|
2022-11-17 20:02:26 +01:00
|
|
|
|
|
|
|
list-scripts.ps1
|
2021-10-17 14:33:27 +02:00
|
|
|
|
|
|
|
|
2023-07-29 10:04:38 +02:00
|
|
|
Parameters
|
|
|
|
----------
|
2021-10-17 14:33:27 +02:00
|
|
|
```powershell
|
|
|
|
|
|
|
|
|
|
|
|
[<CommonParameters>]
|
|
|
|
This script supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction,
|
|
|
|
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
|
|
|
|
```
|
|
|
|
|
2023-07-29 10:04:38 +02:00
|
|
|
Script Content
|
|
|
|
--------------
|
2022-11-17 20:05:34 +01:00
|
|
|
```powershell
|
2022-11-17 20:02:26 +01:00
|
|
|
<#
|
|
|
|
.SYNOPSIS
|
2023-05-26 12:20:18 +02:00
|
|
|
Lists all PowerShell scripts
|
2022-11-17 20:02:26 +01:00
|
|
|
.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)
|
2023-05-26 12:20:18 +02:00
|
|
|
Write-Progress "Reading $FilePath..."
|
|
|
|
$table = Import-CSV "$FilePath"
|
|
|
|
[int]$No = 1
|
|
|
|
foreach($row in $table) {
|
2022-11-17 20:02:26 +01:00
|
|
|
New-Object PSObject -Property @{
|
2023-05-26 12:20:18 +02:00
|
|
|
'No' = $No++
|
|
|
|
'Script' = $row.SCRIPT
|
|
|
|
'Description' = $row.DESCRIPTION
|
2022-11-17 20:02:26 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
$global:NumScripts = $Table.Count
|
2023-05-26 12:20:18 +02:00
|
|
|
Write-Progress -completed "."
|
2022-11-17 20:02:26 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
try {
|
2023-05-26 12:20:18 +02:00
|
|
|
ListScripts "$PSScriptRoot/../Data/scripts.csv" | Format-Table -property No,Script,Description
|
2022-11-17 20:02:26 +01:00
|
|
|
exit 0 # success
|
|
|
|
} catch {
|
|
|
|
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
|
|
|
exit 1
|
|
|
|
}
|
2022-11-17 20:05:34 +01:00
|
|
|
```
|
2022-11-17 20:02:26 +01:00
|
|
|
|
2023-07-29 10:11:05 +02:00
|
|
|
*(generated by convert-ps2md.ps1 using the comment-based help of list-scripts.ps1 as of 07/29/2023 10:10:46)*
|