Closed
Description
Running Get-Command
gets all globals like aliases (cd -> Set-Location), functions (cd~ -> Set-Location ~), etc.
Running Get-Command -CommandType Function
can resolve a subset of these. (Get-Command -CommandType Function).Name
gets the names of all the functions and so on.
Activity