 |
batch file - In Windows cmd, how do I prompt for user input and use ...
I have a Windows .bat file which I would like to accept user input and then use ...
Try this: @echo off set /p id="Enter ID: " %=%. You can then use %id% as a ...
stackoverflow.com |
 |