So in my code I have smth like this
set/p "apk=>> "
And I wanna start my script from run window with apk variable:
myprogram.bat apk_variable_content
Is it possible?
So in my code I have smth like this
set/p "apk=>> "
And I wanna start my script from run window with apk variable:
myprogram.bat apk_variable_content
Is it possible?
Put %1
to where you wanna put your parameter - it will pull the first parameter you give it in the command line.
%2
will take the second one.
And so on, until %9