home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1994 #1 / monster.zip / monster / GAMES_C / DOOMCHTS.ZIP / PUT.BAT < prev    next >
DOS Batch File  |  1994-02-17  |  2KB  |  49 lines

  1. @echo off
  2. if "%1" == "" goto helpme
  3. if "%2" == "" goto helpme
  4. if "%3" == "" goto helpme
  5. if "%1" == "%2" goto helpme
  6. %2
  7. cd \
  8. md %3
  9. cd %3
  10. if "%4" == "" goto doit
  11. if "%4" == "1" goto doit
  12. for %%n in (%1\*.exe) do %%n -d
  13. echo Please insert Disk 2
  14. pause
  15. if "%4" == "2" goto doit
  16. for %%n in (%1\*.exe) do %%n -d
  17. echo please insert Disk 3
  18. pause
  19. if "%4" == "3" goto doit
  20. for %%n in (%1\*.exe) do %%n -d
  21. echo please insert Disk 4
  22. pause
  23. :doit
  24. for %%n in (%1\*.exe) do %%n -d
  25. goto bot
  26. :helpme
  27. cls
  28. echo *************************************************************************
  29. echo **                        PUT.BAT                                      **
  30. echo **                Easy installation program                            **
  31. echo **           Version 1.2 by Bill Gagnon of Kompute 5/10/93             **
  32. echo **    This program cannot be run from this floppy, it needs to be put  **
  33. echo **    onto a hard drive or perhaps a higher capacity floppy diskette   **
  34. echo **                                                                     **
  35. echo ** Syntax:                                                             **
  36. echo **   Put [source drive] [destination Drive] [destination Path] [#disks]**
  37. echo **                  seperated by a space                               **
  38. echo **                  PUT  A: C: TEST                                    **
  39. echo **               installs your program from                            **
  40. echo **   the A: Drive to a subdirectory called TEST  on your C: Drive      **
  41. echo ** Directory suggestion: The name of the Program, or an abbreviated    **
  42. echo ** version of the name.  The name can be 8 letters or numbers long,    **
  43. echo ** no spaces or symbols, just letters and numbers                      **
  44. echo ** NEW revision: Put A: C: TEST 2                                      **
  45. echo **                              ^for 2 disk set                        **
  46. echo *************************************************************************
  47. :bot
  48. exit
  49.