PowerShellでスクリプトディレクトリのパスを取得する方法

powershell コンピュータ
powershell

$profileが保存されたディレクトリがPowerShellのスクリプトディレクトリのパスだと思われるので以下のコマンドで取得できると思います。

(Split-Path $profile)

$profileが存在しない環境では動作しないと思われます。

PowerShell5の場合
ユーザーディレクトリ/documents/WindowsPowerShell

PowerShell7の場合
ユーザーディレクトリ/documents/PowerShell

コメント