vote up 0 vote down star

How to proceed with an interactive batch file?

Eg.,

DO you want to continue? [y/n]

If 'y' Goto Label1

Else Goto Label2

Thanks

flag

67% accept rate

2 Answers

vote up 3 vote down check

You can use the SET command. The following is the DOS command equivalent of the pseudo code you have above:

set /p choice=Do you want to continue? [y/n]
if '%choice%'=='Y' goto label1
goto label2
link|flag
if '%choice%' == 'Y' goto label1 conditional operator. = dint work for me! – Bharani Mar 4 at 12:59
my apologies - i'll edit it now – Darksider Mar 4 at 13:03
You may also consider adding a /i to the if so the comparison is not case-sensitive. – Johannes Rössel Mar 4 at 13:06
Rossel, where should I add the /i? Can you gimme the statement? – Bharani Mar 4 at 14:14
vote up 2 vote down

Using the choice command, you can specify a set of valid characters and a message:

choice /C YN /M "Do you want to continue?"
if errorlevel 2 goto labelno
if errorlevel 1 goto labelyes
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.