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


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

Posted by Anonymous on April 20, 2013 at 07:44:14:

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

@echo off

rem *** jump to model according to PA number ***

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

:Yes
set pa=
set /p pa={PA_Number}
for %%x in (1 2 4) do if (%pa%)==(psat%%x) goto PSAT1
goto %pa%

:PSAT1
cd biostosh
bios1.exe
goto End

:PXLL1
cd biostosh
bios2.exe
goto End

: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 ]