home *** CD-ROM | disk | FTP | other *** search
/ DP Tool Club 8 / CDASC08.ISO / VRAC / DEMO350.ZIP / INSTALL.BAT < prev    next >
DOS Batch File  |  1993-09-08  |  3KB  |  88 lines

  1. @echo off
  2. if .%1.==.. goto help
  3. if .%2.==.. goto help
  4. if not exist %1\MAIN.EXE goto help
  5. goto install
  6.  
  7. :help
  8. echo  
  9. echo To install the demo, type "INSTALL X: Y:" where X: is the source
  10. echo drive (drive with the demo disk) and Y: is the destination (hard) drive.
  11. echo For example, to install from a floppy disk in drive A to drive C, type:
  12. echo  
  13. echo   INSTALL A: C:
  14. echo  
  15. echo If you are installing this demo from a directory on your hard drive
  16. echo rather than from a floppy disk, specify the ENTIRE DIRECTORY NAME of
  17. echo the directory where these installation files are located. For example,
  18. echo if you unZipped a demo file obtained from a BBS into your "c:\telix\dl"
  19. echo directory, the command you'd want to type is:
  20. echo  
  21. echo   INSTALL C:\TELIX\DL C:
  22. echo  
  23. echo The install program will create a directory called \SLDEMO on the 
  24. echo destination drive, and install the demo there. Approximately 2 Megabytes
  25. echo of hard disk space is required.
  26. echo  
  27. goto exit
  28.  
  29. :install
  30. %2
  31. cd \
  32. mkdir %2\sldemo >nul
  33. if not exist %2\sldemo\nul goto help
  34. cd sldemo
  35. if exist bbs.exe goto reinstall
  36. echo  
  37. echo Installing Searchlight Demo. Please Wait.
  38. mkdir text >nul
  39. mkdir subs >nul
  40. mkdir menu >nul
  41. %1\main >nul
  42. cd text
  43. %1\text >nul
  44. cd ..\subs
  45. %1\subs >nul
  46. cd ..\menu
  47. %1\menu >nul
  48. cd ..
  49. if not exist bbs.ovr goto freespace
  50. if not exist strings.sys goto freespace
  51. if not exist subs\bulletins.msg goto freespace
  52. cls
  53. echo  
  54. echo The Searchlight BBS Demo is installed.
  55. echo  
  56. echo ■ To start the demo program in local mode, type 'DEMO'.
  57. echo   Follow the instructions that appear on your screen.
  58. echo  
  59. echo ■ To run the Searchlight Configuration program, type 'CONFIG'.
  60. echo   You can also start the CONFIG program from within the demo.
  61. echo  
  62. echo ■ To read the Searchlight documentation, type 'MANUAL'.
  63. echo   You can also browse or print MANUAL.TXT with other programs.
  64. echo   (If the documentation file is not available, you may download it
  65. echo   separately from our support BBS at 516-689-2566).
  66. echo  
  67. echo ■ For more information about how to configure Searchilght to accept
  68. echo   a remote call and other startup options, see the bulletins screen
  69. echo   inside the demo, or consult the documentation file.
  70. echo  
  71.  
  72. goto exit
  73.  
  74. :reinstall
  75. echo  
  76. echo You have already installed this demo. Please erase all the files
  77. echo from the \SLDEMO directory before installing this demo again.
  78. goto exit
  79.  
  80. :freespace
  81. echo  
  82. echo All the files needed for this demo were not installed. Please free
  83. echo some more space on your harddrive and install the demo again.
  84. goto exit
  85.  
  86. :exit
  87.  
  88.