2

Possible Duplicate:
How do I set PATH and other environment variables?

In windows (XP) how can I easily append to PATH permanently.

I know that you can change it by going to My Computer -> Properties -> Advanced -> Environment Variables

However since I find myself doing this so often, I'm looking for a faster way.

Ideally it would be an executable or batch file that asks what to append, does the job then disappears.

Any ideas?

AnnanFay
  • 1,015

1 Answers1

1

Batch file is the easiest way. Just punch this into a batchfile:

Set /p INPUT= Type the path to append
set PATH = %INPUT%;%PATH%
surfasb
  • 22,896