home *** CD-ROM | disk | FTP | other *** search
- @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
-