PowerShell Adicionar ao caminho Env
$env:Path = "SomeRandomPath"; (replaces existing path)
$env:Path += ";SomeRandomPath" (appends to existing path)
baruchiro