up vote 2 down vote favorite
3
share [g+] share [fb]

I wish to be able to edit my environment variables in a more user friendly manner than the Start Menu >My Computer>(right click)Properties>Advanced(tab)>Environment Variables

... and then get those tiny unmanageable dialogs

Any recommendations?

link|improve this question
feedback

4 Answers

up vote 3 down vote accepted

As far as I know, not with the built-in commands in Windows.

Take Command Console LE, a command interpretor compatible with cmd.exe, can save variables as System and User variables. Check the SET command with the /S and /U parameters respectively.

set /s sysvariable=whatever
set /u uservariable=whatever

I've not used it but Rapid Environment Editor looks good and is free.

alt text

link|improve this answer
Bold links, screenshot, and pertinent information, +1 – Gnoupi Nov 2 '09 at 15:04
Beautiful! Thanks :) – Yaneeve Nov 2 '09 at 15:09
feedback

Actually, SET doesn't change the variables permenantly - you want to use SetX.

SETX [/S system [/U [domain]user [/P [password]]]] var value [/M]

link|improve this answer
feedback

Path Editor

link|improve this answer
Seems nice but it only takes care of the path variable, doesn't it? – Yaneeve Nov 2 '09 at 14:56
@Yaneeve:yes.... – Jichao Nov 2 '09 at 15:07
feedback

Use the commandline window (cmd) using the SET command...but pay attention using this way. My prefered way is to copy out the variable value to any texteditor (like notepad) and modify the value there, copying back the new value afterwards. This tiny dialog is a pain since too long...

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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