home *** CD-ROM | disk | FTP | other *** search
/ Joystick Magazine 1995 September (Special Edition) / Joystick-HS07-CD3.iso / mlords / install.bat < prev    next >
DOS Batch File  |  1995-05-06  |  355b  |  29 lines

  1. @echo off
  2. if %1x==x goto error
  3. if %1==c: goto ok
  4. if %1==C: goto ok
  5. if %1==d: goto ok
  6. if %1==D: goto ok
  7. if %1==e: goto ok
  8. if %1==E: goto ok
  9. goto error
  10.  
  11. :ok
  12. md %1\mlords
  13. xcopy *.* %1\mlords
  14. %1
  15. cd \mlords
  16. del install.bat
  17. del mlords2.txt
  18. goto end
  19.  
  20. :error
  21.  
  22. echo 
  23. echo   Usage: INSTALL drive:
  24. echo Example: INSTALL c:
  25. echo 
  26.  
  27.  
  28. :end
  29.