環境変数の操作 - env
環境変数一覧を取得する
Get-ChildItem env:
dir env: # エイリアス
環境変数を検索する
Get-ChildItem -Path env:*user*
環境変数を取得する
Get-ChildItem env:APPDATA
環境変数を修正する
$env:Path += ";C:\foo\bin"
永続的に環境変数を修正する
[Environment]::SetEnvironmentVariable( "foo", 123, [System.EnvironmentVariableTarget]::Machine )
[Environment]::SetEnvironmentVariable("Path", $env:Path + ";C:\bin", [EnvironmentVariableTarget]::Machine
%APPDATA%などの変数記法を使う場合:
[environment]::SetEnvironmentVariable("VIM", "%APPDATA%\Vim", "User")
コマンドプロンプトを使う場合
setx Path "c:\java\bin"
参考