I would 开发者_Python百科like to know how to SET a variable in a batch file while it is running
E.g.
Enter variable name: test
Then I can call this variable later on e.g. %test%
Try this:
SET /P TEST=Enter variable name:
I would 开发者_Python百科like to know how to SET a variable in a batch file while it is running
E.g.
Enter variable name: test
Then I can call this variable later on e.g. %test%
Try this:
SET /P TEST=Enter variable name:
精彩评论