PowerShellで環境変数を読み込む - 2023/7/30
環境変数を再読み込みする
code:shell
$env:Path =
System.Environment
::GetEnvironmentVariable("Path","Machine") + ";" +
System.Environment
::GetEnvironmentVariable("Path","User")
引用:
https://qiita.com/yuta0801/items/adb58591c3d9432bd868
#windows
#powershell