home *** CD-ROM | disk | FTP | other *** search
- @echo off
- cls
- if (%1) == () goto ERROR
-
- echo Please ensure disk 2 (formatted and empty) is in drive %1 and
- pause
-
- cls
- echo Creating Disk label
- label %1 CYBER_2
- echo copying files
-
- copy disk.002 %1\disk.id > NUL
- copy c-motion.002 %1 > NUL
-
- echo done
-
- goto END
-
- :ERROR
- echo You must supply a disk letter to copy to.
- echo e.g. Disk2 a:
-
- :END
-