In a batch file I am making, I need to ask for user input without having it stop. I know about set /p
and choice /c
, but these options pause the batch file and disallow simultaneous processing.
<nul set /p
doesn't work either, as it is almost instantaneous and barely allows key presses. I also don't want to have to press the ENTER
key.
Please help me.