Jonathan Allen
Jonathan Allen

Reputation: 70307

PowerShell: What is the equivalent of the path enviromental variable

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

Answers (1)

manojlds
manojlds

Reputation: 301147

You can access the PATH environment variable using $env:PATH.

Upvotes: 6

Related Questions