home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 5 / 05.iso / a / a113 / 1.img / INSTALL.BAT < prev    next >
Encoding:
DOS Batch File  |  1987-03-15  |  3.6 KB  |  150 lines

  1. echo off
  2. cls
  3. echo 
  4. echo                dBASE III PLUS VERSION 1.1
  5. echo                  HARD DISK INSTALLATION 
  6. echo 
  7. echo You can copy  dBASE III PLUS  to your  hard disk  by following
  8. echo these  installation  instructions.  You  can  also  use  these
  9. echo instructions to install dBASE ADMINISTRATOR.
  10. echo 
  11. if "%1==" goto Helpinst
  12. for %%f in (C:,c:,D:,d:,E:,e:,F:,f:,G:,g:,H:,h:,Y:,y:) do if %1.==%%f. goto START
  13. for %%f in (I:,i:,J:,j:,K:,k:,L:,l:,M:,m:,N:,n:,O:,o:,P:,p:,Z:,z:) do if %1.==%%f. goto START
  14. for %%f in (Q:,q:,R:,r:,S:,s:,T:,t:,U:,u:,V:,v:,W:,w:,X:,x:) do if %1.==%%f. goto START
  15. goto BADDRIVE
  16. :START
  17. if "==%2" goto DBASE
  18. if %2.==DBA. goto DBA
  19. if %2.==dba. goto DBA
  20. goto Helpinst
  21. :DBASE
  22. echo dBASE III PLUS will be installed on drive %1
  23. echo 
  24. yn Y N 30 Do you want to continue (Y/N)?
  25. if ERRORLEVEL 1 goto DBASE1
  26. goto END
  27. :DBASE1
  28. if exist %1dbase.exe goto ErrExist
  29. if exist %1dba.lod goto ERREXT
  30. echo Copying files to drive %1 . . .
  31. echo 
  32. copy dbase.exe %1
  33. copy dbaseinl.ovl %1
  34. copy dbase.msg %1
  35. if not exist %1config.db copy config.db %1
  36. if not exist %1config.sys copy config.sys %1
  37. :SYS2
  38. echo 
  39. echo Insert the dBASE III PLUS System Disk #2 in drive A.
  40. echo 
  41. pause
  42. if not exist dbase.ovl goto SYS2
  43. echo 
  44. echo Copying files to drive %1 . . .
  45. echo 
  46. copy dbase.ovl %1
  47. copy help.dbs %1
  48. copy assist.hlp %1
  49. if not exist %1dbase.ovl goto ErrDbase
  50. if not exist %1dbase.exe goto ErrDbase
  51. if not exist %1dbase.msg goto ErrDbase
  52. if not exist %1dbaseinl.ovl goto ErrDbase
  53. echo 
  54. echo dBASE III PLUS has been successfully installed.
  55. goto End
  56. :DBA
  57. echo dBASE ADMINISTRATOR will be installed on drive %1
  58. echo 
  59. yn Y N 30 Do you want to continue (Y/N)?
  60. if ERRORLEVEL 1 goto Ad1
  61. goto END
  62. :Ad1
  63. if exist %1dbase.exe goto ErrExist
  64. :AD2
  65. echo 
  66. echo Insert the Administrator #1 disk in drive A
  67. echo 
  68. pause
  69. echo 
  70. if not exist dba.lod goto AD2
  71. echo 
  72. echo Copying files to drive %1 . . .
  73. echo 
  74. copy dba.lod %1
  75. copy dbase.msg %1
  76. copy protect.exe %1
  77. copy help.dbs %1
  78. copy assist.hlp %1
  79. echo 
  80. :Ad4
  81. echo 
  82. echo Insert the Administrator #2 disk in drive A
  83. echo 
  84. pause
  85. echo 
  86. if not exist dba.ovl goto AD4
  87. echo Copying files to drive %1 . . .
  88. echo 
  89. copy dba.ovl %1
  90. echo 
  91. echo dBASE ADMINISTRATOR has been successfully installed
  92. echo 
  93. goto END
  94. :Helpinst
  95. echo You entered the command incorrectly.  The correct syntax is:
  96. echo 
  97. echo     "INSTALL <drive:>"        To install dBASE III PLUS.
  98. echo 
  99. echo     "INSTALL <drive:> DBA"        To install dBASE ADMINISTRATOR.
  100. echo 
  101. echo Install is aborted.
  102. goto End
  103. :ErrExist
  104. echo 
  105. echo dBASE III PLUS already exists in the destination drive.
  106. goto ErrUnst
  107. :ERREXT
  108. echo 
  109. echo dBASE ADMINISTRATOR already exists in the destination drive.
  110. :ErrUnst
  111. echo 
  112. echo Install is aborted.
  113. goto End
  114. :BADDRIVE
  115. echo 
  116. echo Invalid drive letter specified.  Install is aborted.
  117. goto Helpinst
  118. :ErrDbase
  119. echo 
  120. echo dBASE III PLUS is not installed.  Install is aborted.
  121. goto END
  122. :MISS
  123. echo 
  124. echo Your system disk has missing files.  Install is aborted.
  125. echo 
  126. goto DELFILE
  127. :ID
  128. echo 
  129. echo dBASE III PLUS has not been identified.  Please run ID.
  130. echo 
  131. goto END
  132. :INITDBA
  133. echo 
  134. echo dBASE ADMINISTRATOR has not been identified.  Please run IDLAN.
  135. echo 
  136. goto DELFILE
  137. :GETSYS1
  138. echo 
  139. echo Please use the dBASE III PLUS System Disk #1 to run the installation.
  140. echo Install is aborted.
  141. echo 
  142. goto END
  143. :ErrDBA
  144. echo 
  145. echo dBASE ADMINISTRATOR installation has been aborted.
  146. echo 
  147. :DELFILE
  148. if exist %1help.dbs del %1help.dbs
  149. :End
  150.