home *** CD-ROM | disk | FTP | other *** search
/ Software Buyer's Guide Volume 7 #1 / Software_Buyers_Guide_Volume_7_Number_1_SelectWare_Technologies_1995.iso / dav20000 / swtdemo.bat < prev    next >
DOS Batch File  |  1994-03-15  |  1KB  |  52 lines

  1. @echo off
  2. :start
  3. cls
  4.  
  5. echo Welcome to DaVinci eMAIL by DaVinci Systems Corporation
  6. echo.
  7. echo This demo is a 5-user Working Model of DaVinci eMAIL.  You may find it
  8. echo helpful to print out the README.TXT file for full installation
  9. echo instructions.  This batch file will only install DaVinci eMAIL, to run
  10. echo the product after installation, exit the Demonstration System and move to
  11. echo the directory where you installed DaVinci eMAIL and type EMAIL.
  12. echo. 
  13. echo To run this demo you will need to:
  14. echo 1) be logged into a network
  15. echo 2) have "ADMIN" or "SUPERVISOR" privledges on the network
  16. echo 3) be running on a 386 or higher workstation with at least 2MB of RAM
  17. echo 3) be running DOS 3.3 or higher 
  18. echo. 
  19. echo  1. Print README.TXT
  20. echo  2. Run SETUP.EXE and install DaVinci eMAIL
  21. echo  3. Exit
  22. echo.
  23. echo   Enter an option (1-3)
  24. query
  25.  
  26. if ERRORLEVEL 4 goto error
  27. if ERRORLEVEL 3 goto end
  28. if ERRORLEVEL 2 goto install
  29. if ERRORLEVEL 1 goto print
  30.  
  31. :error
  32. echo Error!  Error!   Input not 1-3 try again
  33. pause
  34. goto start
  35. goto end
  36.  
  37. rem :type
  38. rem type readme.txt | more
  39. rem goto start
  40. rem goto end
  41.  
  42. :print
  43. print readme.txt
  44. goto start
  45. goto end
  46.  
  47. :install
  48. setup
  49. goto end
  50.  
  51. :end
  52.