home *** CD-ROM | disk | FTP | other *** search
/ PC World 1998 June / PCWorld_1998-06_cd.bin / software / sharware / antiviry / tb95805 / av3end.exe / INSTALL.BAT < prev    next >
DOS Batch File  |  1998-03-13  |  11KB  |  340 lines

  1. @echo off
  2. echo off
  3. echo        --- ThunderByte Anti-Virus installation batch program ---
  4. echo.
  5.  
  6. rem     * Make sure that we can find the utilities in the current directory
  7. if not exist TBSCAN.EXE goto error1
  8.  
  9. rem     * Find out if we are upgrading a previous version in the current dir
  10. if exist TBSTART.BAT goto pathexists
  11.  
  12. rem     * Make sure that the user specified a destination path
  13. if %1X==X goto error2
  14.  
  15. rem     * Make sure the target path exists or can be created
  16. if exist %1\nul goto pathexists
  17. md %1
  18. if not exist %1\nul goto error3
  19. :pathexists
  20.  
  21. rem     * Make sure user did not type something like 'C:' :-)
  22. if exist %1\CONFIG.SYS goto error5
  23.  
  24. echo Please read the License.Txt file. By using the TBAV package you
  25. echo agree with our license agreement. You can print the License.Txt
  26. echo file by typing the following command on the DOS command line:
  27. echo    Copy License.Txt Lpt1
  28. echo Press Ctrl-C to abort this installation batch file, or
  29. pause
  30.  
  31. echo.
  32. echo This installation batch file of the shareware version of TBAV
  33. echo is not the same as the full featured installation program of the
  34. echo commercial version of TBAV. (The main reason for the omission of
  35. echo the installation program is to save disk space and to minimize
  36. echo download time). Therefore the installation procedure might
  37. echo differ from the procedure described in the manual.
  38. echo.
  39.  
  40. rem     * If TbScanX is active, de-activate it.
  41. if not exist SCANX goto notres
  42. if exist %1\tbscanx.exe %1\tbscanx /off
  43.  
  44. :notres
  45. rem     * Copy the TBAV utilities if necessary
  46. if exist dummy.tst del dummy.tst >nul
  47. if exist %1\dummy.tst del %1\dummy.tst >nul
  48. echo TEST >%1\dummy.tst
  49. if exist dummy.tst goto filesexists
  50. if not exist %1\dummy.tst goto error4
  51. echo TbSetup will now delete the Anti-Vir.Dat file of a previous
  52. echo TBAV version if it exists in directory %1
  53. pause
  54. rem     * If Anti-Vir.Dat already exists and is hidden, delete it...
  55. tbsetup %1 remove
  56. cls
  57. echo Copying files. Please wait...
  58. copy addendum.txt %1 >nul
  59. copy agents.txt %1 >nul
  60. copy anti-vir.dat %1 >nul
  61. copy appnotes.txt %1 >nul
  62. copy file_id.diz %1 >nul
  63. copy install.bat %1 >nul
  64. copy license.txt %1 >nul
  65. copy makeresc.bat %1 >nul
  66. copy register.txt %1 >nul
  67. copy report.txt %1 >nul
  68. copy tbav.txt %1 >nul
  69. copy tbav.exe %1 >nul
  70. copy tbav.lng %1 >nul
  71. copy tbcheck.exe %1 >nul
  72. copy tbclean.exe %1 >nul
  73. copy tbdel.com %1 >nul
  74. copy tbdisk.exe %1 >nul
  75. copy tbdriver.exe %1 >nul
  76. copy tbdriver.lng %1 >nul
  77. copy tbfile.exe %1 >nul
  78. copy tbkey.exe %1 >nul
  79. copy tblog.exe %1 >nul
  80. copy tbmem.exe %1 >nul
  81. copy tbscan.def %1 >nul
  82. copy tbscan.exe %1 >nul
  83. copy tbscan16.exe %1 >nul
  84. copy tbscan32.exe %1 >nul
  85. copy tbscan.lng %1 >nul
  86. copy tbscan.sig %1 >nul
  87. copy tbscanx.exe %1 >nul
  88. copy tbsetup.dat %1 >nul
  89. copy tbsetup.exe %1 >nul
  90. copy tbutil.exe %1 >nul
  91. copy tbutil.lng %1 >nul
  92. copy nvclean.* %1 >nul
  93. copy tbav.faq %1 >nul
  94. copy tbmon.com %1 >nul
  95. copy whatsnew.* %1 >nul
  96. if exist tbav.key copy tbav.key %1 >nul
  97. if %_4ver%x==x copy descript.ion %1 >nul
  98.  
  99. :filesexists
  100. del %1\dummy.tst >nul
  101. if not exist %1\docs.exe goto nopack
  102. %1\docs -o %1
  103. del %1\docs.exe >nul
  104. :nopack
  105.  
  106. rem     * DOS has no interactive batch file commands,
  107. rem     * so we create a special program to solve that!
  108. rem     * the 'garbage' in the echo command is program code
  109. rem     * to read a key into an errorlevel, the program code
  110. rem     * will be copied into an executable file.
  111. echo ═êα╧┤L═! >%1\ask.com
  112.  
  113. echo.
  114. echo TbSetup will now generate or update the Anti-Vir.Dat file
  115. echo of the directory %1
  116. xpause
  117. rem     * create or update the Anti-Vir.Dat records of the TBAV utilities
  118. %1\TBSETUP %1
  119.  
  120. cls
  121. rem     * do not overwrite an existing TBAV setup.
  122. if exist %1\TBSTART.BAT goto upgrade
  123.  
  124. echo.
  125. echo The Thunderbyte Anti-Virus utilities have been copied to the destination
  126. echo directory. It is recommended to read the documentation of TBAV thoroughly
  127. echo and to make a customized setup. One of the advantages of the Thunderbyte
  128. echo Anti-Virus utilities is flexibility and the possibility to configure
  129. echo them to suit your needs in an optimal way.
  130. echo.
  131. echo This installation batch file helps you to setup the utilities in their
  132. echo most standard and non-customized way.
  133. echo Do you want to continue? (Y/n)
  134. %1\ask
  135. if not errorlevel 1 goto nosetup
  136.  
  137. rem     * make a backup of the AUTOEXEC.BAT file!
  138. echo.
  139. echo Backing up C:\AUTOEXEC.BAT to C:\AUTOEXEC.ORG...
  140. copy c:\autoexec.bat c:\autoexec.org >nul
  141.  
  142. rem     * create a TBSTART.BAT file in the TBAV directory.
  143. echo @echo off >%1\TBSTART.BAT
  144. echo echo off >>%1\TBSTART.BAT
  145.  
  146. echo.
  147. echo For easy access of the TBAV utilities it is recommended to put them
  148. echo into your PATH environment variable.
  149. echo Do you want to add %1 to your PATH statement? (Y/n)
  150. %1\ask
  151. if not errorlevel 1 goto dosetup
  152. rem     * add the PATH statement to the end of the AUTOEXEC.BAT file.
  153. echo PATH=%%PATH%%;%1 >>C:\AUTOEXEC.BAT
  154.  
  155. :dosetup
  156. echo.
  157. echo TbSetup will now process your drives to generate the Anti-Vir.Dat files.
  158. pause
  159. rem     * process the rest of the machine, but do not touch existing information!
  160. %1\TbSetup NewOnly AllDrives
  161.  
  162. :tbdriver
  163. cls
  164. echo.
  165. echo The TBAV package contains some utilities that can be installed in the memory
  166. echo of your PC. Do you want to add them to your AUTOEXEC.BAT file? (Y/n)
  167. %1\ask
  168. if not errorlevel 1 goto autoscan
  169. rem     * create a TBSTART.BAT file in the TBAV directory.
  170. echo %1\TbDriver >>%1\TBSTART.BAT
  171.  
  172. echo.
  173. echo TBSCANX is a memory resident virus scanner.
  174. echo Do you want to install it? (Y/n)
  175. %1\ask
  176. if not errorlevel 1 goto tbcheck
  177. rem     * add the TbScanX statement to the TBSTART.BAT file.
  178. echo %1\TbScanX EMS XMS >>%1\TBSTART.BAT
  179.  
  180. :tbcheck
  181. echo.
  182. echo TBCHECK is a memory resident integrity checker.
  183. echo Do you want to install it? (Y/n)
  184. %1\ask
  185. if not errorlevel 1 goto tbmem
  186. rem     * add the TbCheck statement to the TBSTART.BAT file.
  187. echo %1\TbCheck noavok=ab >>%1\TBSTART.BAT
  188.  
  189. :tbmem
  190. echo.
  191. echo TBMEM is a resident memory guard.
  192. echo Do you want to install it? (Y/n)
  193. %1\ask
  194. if not errorlevel 1 goto tbfile
  195. rem     * add the TbMem statement to the TBSTART.BAT file.
  196. echo %1\TbMem >>%1\TBSTART.BAT
  197.  
  198. :tbfile
  199. echo.
  200. echo TBFILE is a resident file guard.
  201. echo Do you want to install it? (Y/n)
  202. %1\ask
  203. if not errorlevel 1 goto autoscan
  204. rem     * add the TbFile statement to the TBSTART.BAT file.
  205. echo %1\TbFile >>%1\TBSTART.BAT
  206.  
  207. :autoscan
  208. echo.
  209. echo Do you want the system to be scanned automatically for viruses every day? (Y/n)
  210. %1\ask
  211. if not errorlevel 1 goto addcall
  212. rem     * add the TbScan statement to the TBSTART.BAT file.
  213. echo %1\TbScan Once AllDrives >>%1\TBSTART.BAT
  214.  
  215. :addcall
  216. if exist C:\TEMP.BAT del C:\TEMP.BAT >nul
  217. echo call %1\TBSTART.BAT >C:\TEMP.BAT
  218. copy /a C:\TEMP.BAT + C:\AUTOEXEC.BAT C:\TEMP2.BAT >nul
  219. copy C:\TEMP2.BAT C:\AUTOEXEC.BAT >nul
  220. del C:\TEMP.BAT >nul
  221. del C:\TEMP2.BAT >nul
  222.  
  223. :ready
  224. echo.
  225. echo Do you want to scan your drives now? (Y/n)
  226. %1\ask
  227. if not errorlevel 1 goto starttbav
  228. %1\TbScan AllDrives
  229.  
  230. :starttbav
  231. cls
  232. :nosetup
  233. echo.
  234. echo It is highly recommended to print the TBAV user manual.
  235. echo You can do this with the following DOS command:
  236. echo    Copy TBAV.TXT Lpt1
  237. echo.
  238. echo If you are upgrading from previous TBAV versions, it is recommended
  239. echo to print the WHATSNEW files and the Addendum.Txt.
  240. echo You can do this with the following DOS command:
  241. echo    Copy WHATSNEW.* Lpt1
  242. echo    Copy ADDENDUM.TXT Lpt1
  243. echo.
  244. echo The menu program TBAV.EXE can be used to read the documentation files.
  245. echo Do you want to start TBAV now? (Y/n)
  246. %1\ask
  247. if not errorlevel 1 goto flush
  248. %1\TBAV
  249. goto end
  250.  
  251. :upgrade
  252. echo.
  253. rem     * Delete all stuff we don't support anymore
  254. echo Install.Bat will delete some obsolete files from previous TBAV
  255. echo versions which are not supported anymore.
  256. echo.
  257. if exist %1\TbScan.Com del %1\TbScan.Com >nul
  258. if exist %1\TbScan.Msg del %1\TbScan.Msg >nul
  259. if exist %1\TbScan.ECI del %1\TbScan.ECI >nul
  260. if exist %1\VirScan.Dat del %1\VirScan.Dat >nul
  261. if exist %1\AddnSigs.Dat del %1\AddnSigs.Dat >nul
  262. if exist %1\ComprSca.* del %1\ComprSca.* >nul
  263. if exist %1\*.AVR del %1\*.AVR >nul
  264. if exist %1\*.Doc del %1\*.Doc >nul
  265. if exist %1\TbScanX.Com del %1\TbScanX.Com >nul
  266. if exist %1\TbRescue.* del %1\TbRescue.* >nul
  267. if exist %1\TBAV.CFG del %1\TBAV.CFG >nul
  268. if exist %1\TbShell.* del %1\TbShell.* >nul
  269. if exist %1\register.exe ren %1\register.exe reg.exe >nul
  270. if exist %1\register.txt ren %1\register.txt reg.txt >nul
  271. if exist %1\register.* del %1\register.* >nul
  272. if exist %1\reg.exe ren %1\reg.exe register.exe >nul
  273. if exist %1\reg.txt ren %1\reg.txt register.txt >nul
  274. if exist %1\TbGarble.* del %1\TbGarble.* >nul
  275. if exist %1\GetBoot.* del %1\GetBoot.* >nul
  276. if exist %1\Upgrade.Bat del %1\Upgrade.Bat >nul
  277. if exist %1\TBAV.ICO del %1\TBAV.ICO >nul
  278. if exist %1\TBAV.PIF del %1\TBAV.PIF >nul
  279. echo All obsolete TBAV files have been removed.
  280. echo.
  281. if not exist %1\StackMan.Exe goto ready
  282. echo Note: StackMan.Exe is not necessary anymore to solve TBAV problems.
  283. echo StackMan is therefor no longer supplied with the shareware TBAV package.
  284. echo If you do not use StackMan, you can delete it from the TBAV directory.
  285. goto ready
  286.  
  287. :error1
  288. echo Error: Invalid program invocation!
  289. echo.
  290. echo Make sure that you invoke INSTALL.BAT in the directory where the
  291. echo TBAV utilities can be found!
  292. echo.
  293. echo Example: if the TBAV utilities can be found on drive A:, you should type:
  294. echo A: [enter]
  295. echo INSTALL [path] [enter]
  296. goto end
  297.  
  298. :error2
  299. echo Error: No destination path specified!
  300. echo.
  301. echo You have to specify the destination path for the TBAV utilities!
  302. echo Even if the utilities are already in the destination path.
  303. echo.
  304. echo Example:
  305. echo If the TBAV utilities are or should be copied to C:\TBAV, please type:
  306. echo INSTALL C:\TBAV
  307. goto end
  308.  
  309. :error3
  310. echo Error: Unable to creat destination directory %1
  311. echo.
  312. echo Make sure you enter an existing destination path or a path that can be created!
  313. goto end
  314.  
  315. :error4
  316. echo Error: Unable to copy files in directory %1
  317. echo.
  318. echo Disk full? Access denied?
  319. goto end
  320.  
  321. :error5
  322. echo Error: No target directory specified!
  323. echo.
  324. echo Make sure you enter a full destination path!
  325. echo %1 is not sufficient!
  326. echo.
  327. echo Example:
  328. echo If the TBAV utilities are or should be copied to C:\TBAV, please type:
  329. echo INSTALL C:\TBAV
  330. goto end
  331.  
  332. :flush
  333. echo.
  334. echo If you have a disk cache installed, wait a few seconds to allow the
  335. echo cache to flush the buffers, and reboot...
  336.  
  337. :end
  338. if exist %1\ask.com del %1\ask.com >nul
  339.  
  340.