mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-11-15 12:34:25 +01:00
16 lines
307 B
PowerShell
16 lines
307 B
PowerShell
|
<#
|
|||
|
.SYNOPSIS
|
|||
|
Lists all installed PowerShell scripts
|
|||
|
.DESCRIPTION
|
|||
|
This PowerShell script lists all installed PowerShell scripts.
|
|||
|
.EXAMPLE
|
|||
|
PS> ./list-installed-scripts
|
|||
|
.LINK
|
|||
|
https://github.com/fleschutz/PowerShell
|
|||
|
.NOTES
|
|||
|
Author: Markus Fleschutz | License: CC0
|
|||
|
#>
|
|||
|
|
|||
|
Get-InstalledScript
|
|||
|
exit # success
|