Skip to content

Instantly share code, notes, and snippets.

@AdamNaj
Created December 15, 2014 10:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save AdamNaj/44ac507a766a2adbd293 to your computer and use it in GitHub Desktop.
Save AdamNaj/44ac507a766a2adbd293 to your computer and use it in GitHub Desktop.
$items = Get-Command * -CommandType Cmdlet | ? {$_.ModuleName -eq "" } | %{ Get-Help -Name ($_.Name) } | sort-object name
$props = @{
InfoTitle = "Sitecore PowerShell Commands"
InfoDescription = "Lists the sitecore power shell commands"
PageSize = 25
}
$items | Show-ListView @props -Property @{Label="Name"; Expression={$_.Name} }, @{Label="Synopsis"; Expression={$_.Synopsis} }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment