Skip to content

Instantly share code, notes, and snippets.

@valtoni
Created June 19, 2020 12:55
Show Gist options
  • Save valtoni/c61b16163bf106bf2d06cdea9e2de77b to your computer and use it in GitHub Desktop.
Save valtoni/c61b16163bf106bf2d06cdea9e2de77b to your computer and use it in GitHub Desktop.
Set path environment on windows powershell
# Add path permanently to environment machine
[Environment]::SetEnvironmentVariable("Path", $env:Path + ";C:\bin", "Machine")
# Add path permanently to environment user
[Environment]::SetEnvironmentVariable("Path", $env:Path + ";C:\bin", "User")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment