Reload the path in PowerShell
Reload the path in PowerShell
Reload the path in PowerShell
Re: Reload the path in PowerShell
Just to bring [Rob's comment](https://stackoverflow.com/questions/17794507/reload-the-path-in-powershell#comment25967553_17794885) to light:
```
$env:Path = [System.Environment]::GetEnvironmentVariable("Path","Machine") + ";" + [System.Environment]::GetEnvironmentVariable("Path","User")
```
```
$env:Path = [System.Environment]::GetEnvironmentVariable("Path","Machine") + ";" + [System.Environment]::GetEnvironmentVariable("Path","User")
```