09-07-2017, 03:35 AM
This should be a simple question for the gurus.
I would like to somehow set (say in a variable) the long string of the full path of a program.exe,
and the long strings of the parameters being passed. Then to execute the program with the short variables.
Example:
Example how to run it:
Instead of:
Thank you so much
I would like to somehow set (say in a variable) the long string of the full path of a program.exe,
and the long strings of the parameters being passed. Then to execute the program with the short variables.
Example:
PROGRAM = C:\Users\username\AppData\Local\SomeProgram\Program.exe
SRLP1 = SomeReallyLongParameter1
SRLP2 = SomeReallyLongParameter2
SRLP3 = SomeReallyLongParameter3
SRLP4 = SomeReallyLongParameter4
SRLP5 = SomeReallyLongParameter5
Example how to run it:
Instead of:
C:\Users\username\AppData\Local\SomeProgram\Program.exe "SomeReallyLongParameter1" "SomeReallyLongParameter2"
Thank you so much