Hi Ian,
that sounds good so far.
By the way I succeeded with my batch file!
Code:
@echo off
rem BurnIn Test pre-Testsetup by Malte
color 57
if exist tmp-script.txt del tmp-script.txt
:start
set /p _tech=enter Tester ID:
set /p _sn=enter Serial Number:
set /p _mod=enter Model Number:
set /p _fa=enter Assembly Order Number:
cls
echo.
echo roda Computer GmbH
echo ----------------------------------------------
echo.
echo roda BurnIn-Test starter
echo.
echo ----------------------------------------------
echo.
echo Tester ID: %_tech%
echo Computer S/N: %_sn%
echo Model: %_mod%
echo Assembly order: %_fa%
echo.
echo.
echo.
echo ----------------------------------------------
echo (C) 2006 Malte
echo ----------------------------------------------
echo Everything correct? Press crt+c to cancle
pause
echo SETLOG "%_sn%.log" >> tmp-script.txt
echo SETMACHINETYPE "%_mod%" >> tmp-script.txt
echo SETSERIAL "%_sn%" >> tmp-script.txt
echo SETNOTES "%_fa%" >> tmp-script.txt
type tmp-script.txt >> bit-script-input.txt
That is the initial batch file. Because I'm running several test configurations, I have to run the following script before each following test:
Code:
type tmp-script.txt >> bit-script-input.txt
It's working fine actually.
Have a nice Day
Malte