vote up 3 vote down star

So I've found out that setting the PATH environment variable affects only the old command prompt, powershell seems to have different environment settings. How do I change the environment variables for powershell (v1)?

Note:

I want to make my changes permanent, so I don't have to set it every time I run powershell. Does powershell have a profile file? Something like bash profile on unix?

flag

47% accept rate

2 Answers

vote up 5 vote down check

Changing the actual environment variables can be done by using the env: namespace / drive info. For example this code will update the path environment variable

$env:Path = "SomeRandomPath";

There are ways to make environment settings permanent but if you are only using them from PowerShell, it's probably a lot better to use your profile to initiate the settings. On startup, powershell will run any .ps1 files it finds in the WindowsPowerShell directory under my documents. Typically you have a profile.ps1 file already there. The path on my computer is

c:\Users\JaredPar\Documents\WindowsPowerShell\profile.ps1
link|flag
$profile is an automatic variable that points at your user profile for all PowerShell hosts. – JasonMArcher Apr 3 at 22:31
Note that (split-path $profile)(to get the containing folder) can contain multiple profile files: profile.ps1 should be loaded by all hosts, <host-name>_profile.ps1 just by the specified host. For PowerShell.exe (console host), this is Microsoft.PowerShell_profile.ps1. – Richard Apr 4 at 14:44
vote up 0 vote down

If you need to modify PATH environment variable temporarily, some time during PowerShell session, you can do it this way:

$env:Path = $env:Path + ";C:\Program Files\GnuWin32\bin"
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.