未分類

PowerShell - ファンクションの一覧を出力する

Windows PowerShell で、定義されているファンクションの一覧を出力する方法を説明します。

コマンド一覧から定義されているファンクションのみ出力

Get-Command -CommandType Function

Function ドライブの項目を出力

Get-ChildItem Function:

Function ドライブに移動してから項目を出力

Set-Location Function: 
Get-ChildItem

-未分類