vote up 2 vote down star
1

I'm having this weird situation :

My user's and system's PATH variable is different than the PATH in powershell.

When I do :

PS C:\$env:path
C:\Windows\System32\WindowsPowerShell\v1.0\;c:\oldpath

However this is not correct, it looks like it stuck on some old PATH variable of my system, so none of the udpates I've done on it didn't change this variable (I do restart after every change to test).

Why is this happening? Do I have to set a PATH variable just for powershell?

flag

How are you changing the path? Just changing it with $env:Path = foo won't persist across sessions. – EBGreen Feb 13 at 16:30
I'm changing the PATH from Computer properties as usual not from console. – dr. evil Feb 13 at 16:51
So you set the path then restart your powershell session and it is not what you changed it to? – EBGreen Feb 13 at 17:02
no it doesn't, I've restarted it after every test – dr. evil Feb 13 at 17:12

1 Answer

vote up 6 vote down check

Powershell will inherit the environment of the process that launched it (which depends on how you launch it). This is usually the interactive shell (explorer.exe). When you modify the environment from computer properties, you modify the environment of explorer.exe, so if you launch powershell from explorer.exe, (for example from the start menu) you should see the new environment.

However, if you launch it from something else (say a cmd.exe shell that you already had opened), then you won't since that process was launched under the old environment.

The sure fire way of seeing all environment changes is to log off and log back on. Otherwise, just be careful how you are launching things.

link|flag
this is interesting, I've launched it from "Launchy", I don't have access the system right now. Will give it another shot on monday see if that was the problem or not. – dr. evil Feb 13 at 18:25
Ooh...great call zdan. I wasn't even thinking of launching it any other way than explorer. Bet this is it. – EBGreen Feb 13 at 18:29
Yeah, I've seen similar behavior with SlickRun. Instead of logging off, I kill explorer.exe (and slickrun.exe), reopen Explorer, then try again. – Peter Seale Feb 13 at 18:29
I use launchy too. Just restarting launchy should work. – zdan Feb 13 at 18:46

Your Answer

Get an OpenID
or

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