home *** CD-ROM | disk | FTP | other *** search
/ ProfitPress Mega CDROM2 …eeware (MSDOS)(1992)(Eng) / ProfitPress-MegaCDROM2.B6I / TEXT / INFO / ADDHELP.ZIP / SETUP.BAT < prev   
Encoding:
DOS Batch File  |  1991-06-17  |  417 b   |  22 lines

  1. @ECHO OFF
  2. REM %1 should be the drive/path to your DOSHELP directory - optional
  3.  
  4. ADDHELP ADDHELP %1
  5.  
  6. if ERRORLEVEL 3 GOTO END
  7. if ERRORLEVEL 2 GOTO FNF
  8. if ERRORLEVEL 1 GOTO ERROR
  9. GOTO END
  10.  
  11. :FNF
  12.   Echo Please restart this batch file and include the drive:\path of your
  13.   Echo DOSHELP.HLP file.
  14.   Echo Eg.               SETHELP D:\DOS
  15.   GOTO END
  16.  
  17. :ERROR
  18.   Echo Check your paths and try again!
  19.  
  20. :END
  21.  
  22.