home *** CD-ROM | disk | FTP | other *** search
- QuickBBS 2.80 "Classic" or "GoldBase"
-
- Labtest also directly supports QuickBBS 2.80 "Classic" and
- 2.80 "GoldBase". To install Labtest into QuickBBS 2.80, you
- will need to set up a special upload menu (ie: UPLOAD.MNU)
- that would be called from your regular Files Menu. This
- menu will have three commands, each of which are automatic
- execution commands:
-
- Optional Data : C:\UPLOADS\TEMP
- Menu Type : 33 (Upload a file)
- Key : (Ctrl A)
-
- Optional Data : *C /C C:\QUICKBBS\LABTEST.BAT *M
- Menu Type : 7 Shell Under Board and Run Program
- Key : (Ctrl A)
-
- Optional Data : FILES
- Menu Command : 2 Return to previous menu
- Key : (Ctrl A)
-
- Sample LABTEST.BAT for QuickBBS
-
- :UPLDSCAN
- CD\UPLOADS\TEMP
- IF NOT EXIST *.* GOTO DONE
- REM ** Caller uploaded something
- REM ** Run scanner on directory TEMP; if bad, move to BAD
- REM ** directory
- C:\LABTEST\LABTEST C:\UPLOADS\TEMP\
- IF NOT EXIST FILES.BBS GOTO SKIP
- REM ** Transfer description to the download directory
- TYPE FILES.BBS >> \UPLOADS\NEWUPLDS\FILES.BBS
- DEL FILES.BBS
- :SKIP
- REM ** Move good files to UPLOADS directory
- COPY *.* \UPLOADS\NEWUPLDS /V
- ECHO Y | DEL *.* > NUL
- :DONE
-
- C:
- CD\QBBS
- EXIT
-
- Note: The trailing back slash on the upload directory in
- line 7 is required!
-
- This informs Labtest that C:\UPLOADS\TEMP\ is a directory
- and not a file. Your Labtest Directory must also be in your
- PATH statement or Labtest must be setup in a Directory
- that is already in your PATH.
-
- You must specify the *M command to force QuickBBS to swap
- out of memory.
-
- This menu will be called from your normal Files menu and
- will replace your existing upload command.
-
- Labtest will check any new files received in your upload
- directory.
-