home *** CD-ROM | disk | FTP | other *** search
/ Season's Greetings & Games Unlimited / UGOLD_cd2.iso / craps / install.bat < prev    next >
DOS Batch File  |  1994-08-20  |  628b  |  28 lines

  1. echo off
  2. if "%1" == "" goto parerror
  3. if "%2" == "" goto parerror
  4. if "%1" == "%2" goto parerror
  5. echo This batch file will create a directory on you hard drive called
  6. echo CRAPS and will copy the files from the floppy to that directory.
  7. echo Press CTRL-BREAK now to abort the batch file.
  8. pause
  9. cls
  10. echo Making directory...
  11. %1
  12. md %2\craps
  13. cd %2\craps
  14. echo Coping files...
  15. copy %1*.* %2
  16. echo Finished.
  17. goto quit
  18. :parerror
  19. echo USAGE: install [source drive] [destination drive]
  20. echo example: install a: c:
  21. echo this will install the program from the a: drive onto the hard
  22. echo drive c:
  23. : quit
  24. echo off
  25.  
  26.  
  27.  
  28.