PowerShell/Scripts/list-cmdlets.ps1
2021-10-16 13:40:20 +02:00

27 lines
717 B
PowerShell
Executable File

<#
.SYNOPSIS
Lists all PowerShell cmdlets
.DESCRIPTION
This script lists all PowerShell cmdlets.
.EXAMPLE
PS> ./list-cmdlets
CommandType Name Version Source
----------- ---- ------- ------
Function Add-BCDataCacheExtension 1.0.0.0 BranchCache
Function Add-BitLockerKeyProtector 1.0.0.0 BitLocker
...
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
try {
Get-Command -Command-Type cmdlet
exit 0 # success
} catch {
"⚠️ Error: $($Error[0]) ($($MyInvocation.MyCommand.Name):$($_.InvocationInfo.ScriptLineNumber))"
exit 1
}