Re: batch file to run updates, need help please!!tech13


[ Follow Ups ] [ Post Followup ] [ The EasyDOS Forum ] [ FAQ ]

Posted by Anonymous on April 19, 2013 at 07:47:16:

In Reply to: Re: batch file to run updates, need help please!!tech13 posted by rfdr81 on April 19, 2013 at 04:04:39:

@echo off
:GetYorN
set /p answer=Now? ([Y]es/[N]o):
if /i {%answer%}=={y} (goto :Yes)
if /i {%answer%}=={n} (goto :No)
goto :GetYorN
:Yes
echo You answered Yes
goto End
:No
echo You answered No
:End


Follow Ups:



Post a Followup (use TAB key to move between boxes - NOT ENTER or RETURN)

Name:
E-Mail:

Subject:

Type your comments in the box below and SUBMIT:


[ Follow Ups ] [ Post Followup ] [ The EasyDOS Forum ] [ FAQ ]