home *** CD-ROM | disk | FTP | other *** search
/ Shareware Overload / ShartewareOverload.cdr / database / ks21_3.zip / KSLOAD.BAT < prev    next >
DOS Batch File  |  1990-10-15  |  2KB  |  42 lines

  1. ECHO OFF      
  2. VERIFY ON
  3. if %1x==x goto explain
  4. if not exist %1ksmenu.ini goto explain
  5. CLS
  6. echo  ────────────────────────────────────────────────────────────────────
  7. echo   This procedure will copy the Kwikstat Simulations module to
  8. echo   the directory %1.  If this is not correct, press CTRL-BREAK.
  9. echo  ────────────────────────────────────────────────────────────────────
  10. pause  
  11. echo Copying program to %1 . . .
  12. copy  kssimu.exe %1*.exe
  13. cls
  14. echo  ────────────────────────────────────────────────────────────────────  
  15. type %1ksmenu.ini                                                              
  16. echo  ────────────────────────────────────────────────────────────────────
  17. echo   If one of the displayed menu items is KSSIMU then press
  18. echo   CTRL-BREAK to cancel this procedure, else
  19. echo  ────────────────────────────────────────────────────────────────────
  20. pause
  21. COPY %1KSMENU.INI+KSSMEN %1KSMENU.INI
  22. echo Installation of Kwikstat Simulations module complete.
  23. goto end
  24. :explain
  25. echo ┌────────────────────────────────────────────────────────────────────┐
  26. echo │ The format of this command is:                                     │
  27. echo │                                                                    │
  28. echo │ KSLOAD d:\directory\                                               │
  29. echo │ Where d: is the drive name and \directory\ is the directory name   │
  30. echo │ where the current version of Kwikstat version 2.10 resides.        │
  31. echo │                                                                    │
  32. echo │ For example:                                                       │
  33. echo │ KSLOAD C:\KWIKSTAT\                                                │
  34. echo │ would be the most probable use of the command on hard disk.        │
  35. echo │                                                                    │  
  36. echo │ For floppy, with the new disk in A: and the current Kwikstat disk  │
  37. echo │ in drive B:, the command would be:                                 │
  38. echo │ KSLOAD B:\                                                         │
  39. echo └────────────────────────────────────────────────────────────────────┘
  40. :END
  41.  
  42.