home *** CD-ROM | disk | FTP | other *** search
/ Shareware Overload / ShartewareOverload.cdr / games / dressup.zip / DINSTALL.BAT < prev    next >
DOS Batch File  |  1991-08-02  |  1KB  |  43 lines

  1. ECHO OFF
  2. CLS
  3. IF "%2NOT"=="NOT" GOTO Whoops
  4. IF "%1"=="A:" GOTO Valid
  5. IF "%1"=="B:" GOTO Valid
  6. IF "%1"=="a:" GOTO Valid
  7. IF "%1"=="b:" GOTO Valid
  8. GOTO Whoops
  9. :Valid
  10. ECHO   ╔═════════════════════════════════════════════════════════╗
  11. ECHO   ║ This batch file will copy all of the DressMeUp and the  ║
  12. ECHO   ║ original Wardrobe files from the distribution disk in   ║
  13. ECHO   ║ drive %1 to the %2\DRESSUP directory on the %2 drive.   ║
  14. ECHO   ╚═════════════════════════════════════════════════════════╝
  15. ECHO ·
  16. ECHO Press Ctrl-C to quit or
  17. PAUSE
  18. CLS
  19. ECHO   Copying DressMeUp Files
  20. ECHO ═══════════════════════════
  21. MKDIR %2\DRESSUP
  22. COPY %1\BROWSE.* %2\
  23. COPY %1\DRESSUP\DRESSUP.BAT %2\
  24. COPY %1\DRESSUP\DRESCSR.* %2\DRESSUP
  25. COPY %1\DRESSUP\DRESSUP.* %2\DRESSUP
  26. COPY %1\DRESSUP\*.DWG %2\DRESSUP
  27. ECHO   ═══════════════════════════════════════════════════════
  28. ECHO    The DressMeUp files are copied and ready to use!  The
  29. ECHO    BROWSE program may be moved from the %2 root to your
  30. ECHO    Utility directory.
  31. ECHO ·
  32. ECHO    Change to the %2 drive, remove the floppy disk,
  33. ECHO    and type DRESSUP at the %2 prompt.
  34. GOTO Exit
  35. :Whoops
  36. ECHO    ╔═══════════════════════════════════════════════════╗
  37. ECHO    ║  You must specify Source and Destination drives.  ║
  38. ECHO    ║  Example:  DINSTALL A: C:                         ║
  39. ECHO    ╚═══════════════════════════════════════════════════╝
  40. :Exit
  41. ECHO ·
  42. PAUSE
  43.