Reputation: 70307
What is the equivalent of the path enviromental variable in PowerShell? I want to automatically include msbuild.exe when I start the console.
Upvotes: 0
Views: 225
Reputation: 301147
You can access the PATH environment variable using $env:PATH.
$env:PATH
Upvotes: 6