未分類

PowerShell - 変数の一覧を出力する

Windows PowerShell で、定義されている変数の一覧を出力する方法を説明します。

Variable ドライブの項目を出力

Get-ChildItem Variable:

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

Set-Location Variable:
Get-ChildItem

定義されている変数の一覧を出力

Get-Variable

-未分類