In pure DOS mode, the following statements can't be used:
set /p confrim=yes or no?(y/n):
if %confirm% == y goto ..
if %confirm% == n goto..
That is, wait on the screen to get a variable entered by the user. I know I can use CHOOSE, but it's an external command. I'd like to know what other methods there are to achieve the function above.
set /p confrim=yes or no?(y/n):
if %confirm% == y goto ..
if %confirm% == n goto..
That is, wait on the screen to get a variable entered by the user. I know I can use CHOOSE, but it's an external command. I'd like to know what other methods there are to achieve the function above.

