mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-11-09 01:25:04 +01:00
27 lines
717 B
PowerShell
Executable File
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
|
|
}
|