home *** CD-ROM | disk | FTP | other *** search
/ Shareware Overload / ShartewareOverload.cdr / comm / ca24_1.zip / SCRIPTS.DOC < prev    next >
Text File  |  1989-03-06  |  6KB  |  108 lines

  1. -------------------------------------------------------------------------------
  2. 890228                COM-AND Scripts             Page  1
  3. -------------------------------------------------------------------------------
  4.  
  5. The file SCRIPTS.ARC contains:
  6.  
  7. ALARM.CMD    ALARM is pop-up window script that sets the alarm tune from one
  8.         of several selections.    It also demonstrates the steps to take
  9.         to customize your own alarm.
  10. BREAKOUT.CMD    BREAKOUT is a demonstration of the script language.  It plays
  11.         a simple 'breakout' style game.  Paddle control is through the
  12.         cursor keys or a mouse (if supported).
  13. CIS.CMD     CIS is a simple script that dials the CIS service (you must
  14.         set the dialing directory appropriately), and initiates
  15.         connection.  [See note below on autologon.]
  16. CONNECT.CMD    CONNECT is a simple script that puts COM-AND into auto-answer
  17.         mode and awaits a call.  When a connection is made, the script
  18.         adjusts the line speed appropriately.
  19. DIALER.CMD    DIALER is a script performing multi-dialing.  Up to 10 dialing
  20.         directory numbers may be specified.  The numbers are dialed
  21.         one after another until a connection is made.  The list of
  22.         numbers (less the one just connected) is saved for next use.
  23. DIRECTOR.CMD    DIRECTORy is another demonstration of the script language.  It
  24.         provides a paged display of files on a given drive:subdirectory
  25.         with more information than Alt-F.
  26. DSZDOWN.CMD    DSZDOWN is a script to use Chuck Forsberg's DSZ to download
  27.         with YMODEM protocol.
  28. DSZUP.CMD    DSZDOWN is a script to use Chuck Forsberg's DSZ to upload
  29.         with YMODEM protocol.
  30. GENIE.CMD    GENIE is a simple script that dials the GEnie service (you
  31.         must set the dialing directory appropriately), and provides
  32.         a masked password prompt. [See note below on autologon.]
  33. KERDOWN.CMD    KERDOWN is a script to use Jan van der Eyjk's PCKERMIT to
  34.         download files.
  35. KERMSERV.CMD    KERMSERV is a script providing KERMIT server commands for
  36.         systems (such as the SOURCE) where they're useful.  It
  37.         implements SEND/RECEIVE/FINISH and LOGOUT.
  38. KERUP.CMD    KERUP is a script to use Jan van der Eyjk's PCKERMIT to
  39.         upload files.
  40. LISTER.CMD    LISTER is a script to listing an ASCII file to the screen with
  41.         pagination.  Paging (backward limit 20 pages), Home, End, and
  42.         FIND <string> are supported.
  43. PLINK.CMD    PLINK is a simple script that dials the PLINK service (you
  44.         must set the dialing directory appropriately), and initiates
  45.         connection.  [See note below on autologon.]
  46. SETTIME.CMD    SETTIME dials the U.S. Naval Observatory, and sets the DOS
  47.         clock with the correct time.  You must modify this script
  48.         before use!  Read comments at the beginning of the script.
  49. SOURCE.CMD    SOURCE is a simple script that dials the SOURCE service (you
  50.         must set the dialing directory appropriately), and initiates
  51.         connection.  [See note below on autologon.]
  52. TELENET.CMD    TELENET is a simple script that dials TELENET and performs
  53.         the basic connect commands.
  54.  
  55. -------------------------------------------------------------------------------
  56. 890228                COM-AND Scripts             Page  2
  57. -------------------------------------------------------------------------------
  58.  
  59. Note: The CIS, GEnie, PLINK, and SOURCE script files all look for an autologon
  60. script file. If found, the autologon is executed.  If not found, the ALARM is
  61. sounded.  Each script looks for a certain file:
  62.  
  63.         CIS.CMD     looks for CISLOGON.CMD    (or .ENF)
  64.         GEnie.CMD    looks for GENLOGON.CMD    (or .ENF)
  65.         PLINK.CMD    looks for AHNLOGON.CMD    (or .ENF)
  66.         SOURCE.CMD    looks for STC.CMD    (or .ENF)
  67.  
  68. With the exception of GENIE, the autologon file should take the form:
  69.  
  70.         TRANSMIT "yourID!"              ; The "!" is a carriage rtn
  71.         WAITFOR "password"              ; Wait for host prompt
  72.         TRANSMIT "yourPassword!"        ; The "!" is a carriage rtn
  73.  
  74. The GEnie autologon is just one TRANSMIT statement:
  75.  
  76.         TRANSMIT "ID,Password!"
  77.  
  78. The autologon script may be created with any editor or wordprocessor capable
  79. of creating an ASCII file (or non-document file).  It is not recommended that
  80. you leave files containing ID and passwords unsecured.    COM-AND may be used
  81. to encrypt the autologon file once created and tested and the original file
  82. then deleted.
  83.  
  84. COM-AND will search for script files both in the current directory and in the
  85. subdirectory pointed to by the COM-AND= environment variable.  COM-AND will
  86. also try the name you use with the extension ".CMD" and ".ENF".  Encryption
  87. is indicated within the encrypted file - not by the extension.    When an
  88. encrypted script file is encountered COM-AND will pop-up a window asking for
  89. a decrypting password.    The script file is then decrypted as it is executed.
  90.  
  91. -------------------------------------------------------------------------------
  92. The following steps might be followed to create an autologon script file.
  93.  
  94. 1) Create the file as named above with the appropriate statements on the sub-
  95.    directory you've placed COM-AND and its scripts.
  96.  
  97. 2) Load COM-AND, and using F2, execute the outer script (CIS, GEnie, PLINK or
  98.    SOURCE).  Assure yourself that the autologon script works correctly.
  99.  
  100. 3) After logging off, use Alt-N in COM-AND to encrypt the script.  For
  101.    example, the file CISLOGON.CMD could be encrypted to CISLOGON.ENF (the
  102.    name is important - the extension is not).  Remember the password you used
  103.    to encrypt the file!  Either encryption method may be used.
  104.  
  105. 4) After exiting COM-AND (or shelling to DOS), delete the original autologon
  106.    file (in the example above, delete be CISLOGON.CMD).
  107.  
  108.