Can I modify the path statement without rewriting the whole thing?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

My situation is that I have a group of users all with slightly different Path statements in their envirorment variables
I just want to add one network path to everyones Path statement, preferably with a script that they can launch from a share

Any idea on how this is done.
 
simonduz said in
My situation is that I have a group of users all with slightly
different Path statements in their envirorment variables.
I just want to add one network path to everyones Path statement,
preferably with a script that they can launch from a share.

Any idea on how this is done.

You mean you want to append or prepend another string into the PATH
environment variable? Like in:

set path=<newstuff>;%path%

or

set path=%path%;<newstuff>

depending on whether you want your path searched first or other paths
searched before yours.
 
Back
Top