Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.