home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1994 #1 / monster.zip / monster / BBS_UTIL / BATSQB.ZIP / BATSDOOR.ZIP / BATSDOOR.DOC < prev    next >
Text File  |  1994-02-10  |  2KB  |  46 lines

  1. This program will generate a user report for users to download from
  2. your BBS,  allowing you to provide even more services for your users.
  3.  
  4. Create a menu for this command alone and have all of the commands
  5. automatically executed. At the menu you will call this MENU from,
  6. make sure it is a GOSUB so the BBS can return TO the previous menu.
  7.  
  8. 1. First you should display the ANS/ASC/AVT screen provided,  which gives the
  9.    users something to look at while it is gathering its information for thier
  10.    account.
  11.  
  12. 2. Set up a MENU command 7 with the node number and user name passed to the
  13.    batch file (NODE NUMBER IS REQUIRED, EVEN IN SINGLE NODE SYSTEMS)
  14.  
  15.    Example:
  16.  
  17.    *C /C BATSDOOR.BAT *N *F *L
  18.  
  19.    Batch file included in this archive: (Single or Multi-line)
  20.  
  21.    CD C:\BATS
  22.    BATSDOOR /L%1 /N%2 %3 %4
  23.    CD C:\RA\NODE%1
  24.    DEL USER%1.ZIP
  25.    COPY C:\BATS\USER%1.ZIP .
  26.    DEL C:\BATS\USER%1.ZIP
  27.    EXIT    
  28.  
  29.    (IF YOU HAVE ONLY ONE NODE, Simple remove the NODE paths,  but leave the
  30.    %1 in its place,  this will allow the batch file to handle multi-line
  31.    configurations.)
  32.  
  33.    The program will create the following zip file.
  34.  
  35.    USER###.ZIP where ### is the node of the BBS you have executed it from.
  36.  
  37.    BATSDOOR is multinode capable, and will create a specific file for each
  38.    node which allows you to run it on more than one line.
  39.  
  40. 3. Next the BBS should do a specific download of USER.ZIP and then the user will
  41.    get thier file.
  42.  
  43. 4. Next the BBS should RETURN to the previous menu.
  44.  
  45. Thats it!
  46.