home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 1998 April
/
chip-cd_1998_04.zip
/
04
/
OFFLINE
/
ROK2000
/
DATE2000
/
CRBOOT.BAT
< prev
next >
Wrap
DOS Batch File
|
1997-08-29
|
566b
|
27 lines
@echo off
if "%1"=="" goto er1
cls
type intro
pause
echo Creating disk, please wait. . .
format %1/u/s < no.inp > nul:
if errorlevel 1 goto er2
copy reset.com a:\ > nul:
copy t2000fp.exe a:\ > nul:
copy autoexec.sch a:\autoexec.bat > nul:
echo Boot disk created. Now restart the computer with the disk in drive A.
goto End
:er1
echo To use, log to the directory where Date2000 software exists and type:
echo crboot 'Drive'
echo eg: crboot A:
goto End
:er2
echo Format failed. Check write-protect, or use another disk.
:End