Format-Listコマンドレットを使う。通常の出力は、オブジェクトのプロパティは横一列に表形式で表示されるが、その出力をパイプラインでFormat-Listコマンドレットに渡すことで、各項目ごとに表示することができる。
> Get-ChildItem C:\Windows\w*.exe | Format-Table
ディレクトリ: C:\Windows
Mode LastWriteTime Length Name
---- ------------- ------ ----
-a---- 2024/04/01 16:22 12288 winhlp32.exe
> Get-ChildItem C:\Windows\w*.exe | Format-List
ディレクトリ: C:\Windows
Name : winhlp32.exe
Length : 12288
CreationTime : 2024/04/01 16:22:18
LastWriteTime : 2024/04/01 16:22:18
(以下、表示省略)