I'd like to set up a system for Windows 7 where each user has their own private directory in %PATH%. I tried setting %PATH% to %HOMEDRIVE%%HOMEPATH%\Bin;%SystemRoot%\System32;[...] but it doesn't seem to work.

For those who don't realize what I'm trying to do, it's sort of like EXPORT PATH=~/bin would be on *nix. It can be on a user specific basis if need be (and that would actually be prefer to the machine-wide settings).

link|improve this question

74% accept rate
feedback

1 Answer

up vote 3 down vote accepted

It looks like you're trying to modify the system path so it's dynamic per-user.

You can set environment variables on a per-user basis, so this isn't necessary.

via the registry;

HKEY_CURRENT_USER\Environment

via the ui;

UI screenshot

Admittedly such an approach falls down once you add more users, but on a home system this probably isn't a frequent occurrence.

link|improve this answer
You can add the variables on the per-user basis, but will this override the system %PATH%? – MiffTheFox Apr 21 '10 at 23:32
It will add to the system path. – RJFalconer Apr 22 '10 at 8:01
feedback

Your Answer

 
or
required, but never shown

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