PowerShell小技巧

PowerSher 设置代理

$env:http_proxy="http://127.0.0.1:7890"
$env:https_proxy="http://127.0.0.1:7890"

$env:http_proxy="http://127.0.0.1:7890"
$env:https_proxy="http://127.0.0.1:7890"

或者

$env:all_proxy="socks5://127.0.0.1:7890"

$env:all_proxy="socks5://127.0.0.1:7890"

查找EXE或DLL

使用where.exe,注意是where.exe不是where,where是PowerShell里面的别名,会调用到其他命令。

PowerShell小技巧_第1张图片

你可能感兴趣的:(PowerShell)