home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-387-Vol-3of3.iso / c / csu10.zip / GO.BAT < prev    next >
DOS Batch File  |  1993-02-20  |  3KB  |  62 lines

  1. echo off
  2. REM Batch file for use with Signet Software's Stock Utilities and 
  3. REM Pereline Communications program. This batch file can be easily
  4. REM modified to work with other communications programs such as
  5. REM Procomm, Crosstalk, Carbon Copy, etc.
  6. REM This batch is used to automatically gather quotes on Compuserve, convert the
  7. REM quotes to Quicken format and then load Quicken.
  8. REM (c) 1993 Signet Software
  9. echo off
  10. rem ===============================================
  11. rem Next Lines Load communication program and calls
  12. rem Compuserve automatically with script file CISSTKS.CMD
  13. rem Customize these lines for your system
  14. rem ===============================================
  15. rem Enter Drive of location of your communications program
  16. C:
  17. rem Change directory to Pereline. Enter path of your COMM. program directory.
  18. CD\PL
  19. rem Delete previous capture buffer
  20. DEL STKS.PRN
  21. rem Next line starts Pereline with autologon script CISSTKS.CMD
  22. rem Customize this line to your communication program
  23. PL.EXE CISSTKS
  24. rem To use Procomm unremark the following line
  25. rem PCPLUS /fCISSTKS
  26. rem The above line would start Procomm with script CISSTKS.ASP
  27. rem Note the script CISSTKS.ASP should be compiled if using latest Procomm
  28. Rem On exit from communications program add todays capture buffer to the
  29. rem History File STKS.OLD
  30. rem Change this line if you are using another name for the capture buffer
  31. rem If you want to keep a history of the capture buffer unremark the next line
  32. rem TYPE STKS.PRN>>STKS.OLD
  33. rem The STKS.OLD file will get bigger with each log on - you may want to
  34. rem delete all of part of this file from time to time.
  35. rem ===========================================
  36. rem Next Lines Load Signet's Conversion Program
  37. rem ===========================================
  38. rem Change directory and start Signet's Compuserve Quote conversion program
  39. rem Enter Drive of coversion program
  40. C:
  41. rem Change directory to conversion program
  42. CD\CSU
  43. rem Run CQ.EXE conversion program
  44. CQ
  45. rem =======================
  46. rem Next Lines Load Quicken
  47. rem =======================
  48. rem Enter Quicken Drive
  49. C:
  50. rem Change to Quicken Directory. Enter correct path of your Quicken directory
  51. CD\QUICKEN5
  52. rem Add converted Quote File C. to Quote History File CHISTORY.
  53. rem You may periodically want to delete all or part of the CHISTORY file
  54. rem to remove the oldest quotes.
  55. TYPE C.>>CHISTORY.
  56. rem Run Quicken for DOS. If you are running Quicken for Windows remark out
  57. rem the next line and load Quicken manually from Windows.
  58. Q
  59. Rem Periline is copyright Pereline Data Systems, Inc.
  60. Rem Procomm is copyright of Datastorm Technology,Inc.
  61. Rem Compuserve is copyright of Compuserve,Inc
  62.