Okay, so I am currently trying to write a program in Batch and I want to be able to program the ENTER key to be the button without just simply typing pause
or pause>nul
because that will let any key work and i don't want that as an option.
This is what it would normally look like:
set /p continue=
if %continue% == [ENTER KEY GOES HERE] goto start
Where I have typed [ENTER KEY GOES HERE]
is where I obviously want to put the Enter key option to proceed, but I don't know how to do that considering it doesn't to be as simple as
echo Press 'C' to continue...
set /p continue=
if %continue% == C goto start
If anyone has any ideas, PLEASE tell me, I would greatly appreciate it!