If, some time during a PowerShell session, you need to
append to the PATH environment variable temporarily, you can
do it this way:
$env:Path += ";C:Program FilesGnuWin32in"
If you need your path to be called before standard one, insert it at the beginning
$env:Path = "C:Program FilesGnuWin32in;$env:Path"
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…