When clicking on "Advanced system settings", I need to login as the administrator and hence only edit the administrators environment variables (in addition to the machine wide ones). How do I edit the environment variables of a standard user?

Details

With the migration to Windows 7, I decided to work as a standard user instead of an unprivileged administrator. Works well so far but I encountered a tiny problem:

When I try to change per user environment variables via the control panel I have to login as an administrator. But since I run that part of the control panel as the administrator I can only edit the administrators variables.

How am I supposed to edit my own environment variables? Without resorting to extreme measures, such as editing the registry (as suggested in "Is there any command line tool that can be used to edit environment variables in Windows?" )

link|improve this question
feedback

2 Answers

up vote 31 down vote accepted

Just type "environment" into the start menu. One option you are presented will be "Edit environment variables for your account".

Similarly, searching for "environment" in the control panel yields that option, too.

Generally, I have noticed that simply searching for something in the start menu or control panel is much faster than trying to remember a series of icons, dialogs, etc. one has to access to find something. At least for the vast majority of tasks1.

A little digging yields that

rundll32 sysdm.cpl,EditEnvironmentVariables

is the command used to present that dialog. You can put a shortcut to that somewhere if you like.


1 There are exceptions, such as installing a loopback network adapter. I looked for a few minutes before finally finding how to do that. But those things are hardly common scenarios :-)

link|improve this answer
Thanks! Being able to search the control panel is indeed one of the most useful features of Vista/7. Also thx for the rundll shortcut. – SealedSun Aug 19 '09 at 12:37
feedback

In addition to searching (as Johannes mentioned), "Change my environment variables" is listed under "Tasks" on the "User Accounts" control panel.

From the command line, you can create/modify persistent environment variables using the setx command, which is included in Windows Vista (and presumably Windows 7 too) and was part of the Windows Resource Kit Tools before that.

link|improve this answer
1  
+1 for setx. This might be the answer to the somewhat related question I posted in the question. – SealedSun Aug 19 '09 at 12:40
+1. Nice to know, definitely. – Joey Aug 19 '09 at 13:56
feedback

Your Answer

 
or
required, but never shown

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