home *** CD-ROM | disk | FTP | other *** search
/ Best of the Best 4 / shareware.iso / games / disk030 / start.bat < prev    next >
DOS Batch File  |  1995-08-01  |  464b  |  23 lines

  1. cls
  2. echo off
  3. echo This file will copy the game BAYRON to your 'C' hard disk.
  4. echo After you run it, you will be given the option of removing it from your
  5. echo hard drive. Just answer 'yes' to the delete question.
  6. echo It requires 3 MEGS of hard drive space.
  7.  
  8. choice /c:yn Go ahead with the copy to hard drive?
  9. if errorlevel 2 goto end
  10. if errorlevel 1 goto copy
  11. goto end
  12.  
  13. :copy
  14. xcopy *.* c:\bayron\
  15. c:
  16. cd \bayron
  17. go
  18.  
  19. cd..
  20. deltree bayron
  21.  
  22. :end
  23.