home *** CD-ROM | disk | FTP | other *** search
/ Crazy Collection 1 / CC-01.iso / GAMES_1 / BOKS / DATA.A00 / VBOX3TO5.BAT < prev   
Encoding:
DOS Batch File  |  1991-10-02  |  1.0 KB  |  31 lines

  1. echo off
  2. rem filename:VBOX3to5 - make BOXING VGA disk #1 on 5 1/4" disk
  3. cls
  4. echo If you have one 360K 5 1/4" floppy disk drive and one 720K 3 1/2" floppy
  5. echo disk drive you may use this utility to create a 5 1/4" floppy to be used
  6. echo as the main Boxing program disk (VGA Disk #1).
  7. if "%1" == "A:" goto good
  8. if "%1" == "a:" goto good
  9. if "%1" == "B:" goto good
  10. if "%1" == "b:" goto good
  11. echo Syntax error - you must specify the 5 1/4" disk drive on which you are
  12. echo creating the new program disk, such as "VBOX3TO5 a:"
  13. goto end
  14. :good
  15. echo Please insert a blank, formatted floppy disk in drive %1 and
  16. Pause
  17. copy vbox.exe %1 >nul
  18. copy boxrdata.blt %1 >nul
  19. copy bglobe.blt %1 >nul
  20. copy rankings.txt %1 >nul
  21. copy box.bat %1 >nul
  22. echo Label the disc in Drive %1 "BOXING VGA DISK #1".
  23. echo To run BOXING from floppies, put this newly created disk in
  24. echo drive %1 and type in the following two lines:
  25. echo %1
  26. echo BOX
  27. echo Note: the current 3 1/2" disk you are using to create the new 5 1/4"
  28. echo disc will still be used as "VGA Disk #4".
  29. :end
  30.  
  31.