Is there a way to set a recursive environment variable in Windows?

I have a catalog of applications in my Dropbox - I would like to access all of them from the command line without the need to set loads and loads of path variables. Is there a way to set up a recursive path variable? I tried to put ** at the end - without joy.

+3
source share
1 answer

You cannot use placeholders or something similar in an environment variable PATH. This is just a directory concatenation, no extra features.

, PATH, . , PATH , , .

+4

Source: https://habr.com/ru/post/1794731/


All Articles