LoginSignup
19
9

More than 5 years have passed since last update.

PowerShellで環境変数を再読込する

Posted at

環境変数、主にPATHを追加、更新したときにOSを再起動せずにコマンドを使用したいときなんかに便利です

$env:Path = [System.Environment]::GetEnvironmentVariable("Path","Machine") + ";" + [System.Environment]::GetEnvironmentVariable("Path","User")

処理としてはシステム環境設定とユーザー環境変数を取得してくっつけて代入するだけですね

19
9
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
19
9