1. 程式人生 > >powershell 設定環境變數

powershell 設定環境變數

cmd 是用set 匯出變數,到了powershell中不好使了,下面介紹下匯出變數的方法,比如想設定
ETCDCTL_API=3

在powershell中執行下面命令就可以了

$Env:ETCDCTL_API=3

比如想在環境變數的PATH下新增一條內容,用如下命令,注意要在路徑之前新增“;”

$Env:path=$Env:Path+";C:\Go\bin"  

移除變數

remove-item env:ETCDCTL_API

參考

https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.core/about/about_environment_variables?view=powershell-6


http://xahlee.info/powershell/environment_variables.html
https://baike.baidu.com/item/powershell命令別名/15969466