windows设置系统变量

Dennis Zhang - Aug 5 - - Dev Community

PowerShell中

# 删除
Remove-Item Env:HTTP_PROXY
# 设置
$env:HTTP_PROXY = "http://my-company-proxy.com"
# 保存和新会话 save and use your proxy for all new shells
setx HTTP_PROXY http://my-company-proxy.com
#查看
$env:HTTP_PROXY
Enter fullscreen mode Exit fullscreen mode
. . . . . . . . . . . . . . . . .
Terabox Video Player