Posted by Anonymous on April 12, 2013 at 17:42:36:
In Reply to: Re: batch file to run updates, need help please!!tech13 posted by rfdr81 on April 12, 2013 at 06:25:47:
@echo off
if (%1)==() goto End
rem *** jump to model according to PA number ***
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