I am trying to add to my Windows 10 a new folder to my existing PATH system variable. But I'd like to add it as a nested variable. So what I did was:
- Create a variable for my folder as a system varaible:
bla=c:\dev - Added the folder I created as a param to my existing path:
PATH={current path};%bla%
But, after restarting, when trying to use it the path didn't recognize the new variable. When I tried to view the PATH from command line I saw the varaible unrecognized. meaning when I typed: c:>set path
I got: {path};%bla%
What should I do in order to use variable as part of my path. Should it be located in another place and not a a system varaible?
