$profileが保存されたディレクトリがPowerShellのスクリプトディレクトリのパスだと思われるので以下のコマンドで取得できると思います。
(Split-Path $profile)
$profileが存在しない環境では動作しないと思われます。
PowerShell5の場合
ユーザーディレクトリ/documents/WindowsPowerShell
PowerShell7の場合
ユーザーディレクトリ/documents/PowerShell
$profileが保存されたディレクトリがPowerShellのスクリプトディレクトリのパスだと思われるので以下のコマンドで取得できると思います。
(Split-Path $profile)
$profileが存在しない環境では動作しないと思われます。
PowerShell5の場合
ユーザーディレクトリ/documents/WindowsPowerShell
PowerShell7の場合
ユーザーディレクトリ/documents/PowerShell
コメント