I want to create a windows shortcut like the following.
e.g) myexecutable.exe -argument1:a1,a2,a3 ... etc
because of a few restrictions a1,a2,a3 is too long to be placed in a shortcut.
So this is how tried to circumvent the restriction.
Created a %ARG% as an environmental variable with values a1,a2,a3, etc and executed it as
myexecutable.exe -argument:%ARG%
This statement works fine when run from a command prompt. But this does not work in a shortcut. It looks like windows do not treat them as variables. is there some other way to achieve this by shortcuts? I have seen solutions something like including a bat file to set up variables and then launching from them, but looking for other elegant ways.
Also any information on how windows process these variables and these shortcuts would be helpful.