home *** CD-ROM | disk | FTP | other *** search
/ Australian Personal Computer 1999 July / APC47-2.ISO / install.bat < prev    next >
Encoding:
DOS Batch File  |  1999-06-02  |  4.1 KB  |  149 lines

  1. @echo off
  2. rem ***** This batch file written by Ashton Mills
  3. rem ***** with additions by Jeremy White, Ben Gerholt and Ari Weisz-Koves
  4. rem ***** for November 1997 issue of
  5. rem ***** Australian Personal Computer Magazine.
  6. cls
  7. echo         apcmag.cd - APC July 1999 - Volume 4 No. 7
  8. echo.__________________________________________________________________
  9. echo.
  10. echo This CD uses a Web browser for navigation.
  11. echo.
  12. echo This allows it to work on any platform without installing
  13. echo proprietary software.
  14. echo.
  15. echo If you already have a Web browser installed, you don't need to run
  16. echo this program. Simply use your Web browser to open the file
  17. echo DEFAULT.HTM in the top level directory of the CD.
  18. echo.
  19. echo If you don't have a Web browser installed, this program allows you
  20. echo to install a popular browser, or one of three Windows Internet
  21. echo Starter Kits.
  22. echo.
  23. choice /c:yn Do you want to continue
  24. if errorlevel 2 goto end
  25. if errorlevel 1 goto KitInst
  26. goto end
  27.  
  28. :KitInst
  29. cls
  30. echo         apcmag.cd - APC July 1999 - Volume 4 No. 7
  31. echo.
  32. echo.Select one of the following, or Q to quit:
  33. echo.
  34. echo 1) Netscape Navigator 4.08 for Windows 3.1
  35. echo 2) Netscape Navigator 4.08 for Windows 95/NT
  36. rem echo 3) Netscape Navigator 2.02 for OS/2 Warp
  37. rem echo 4) IBM WebExplorer 1.1h for OS/2 Warp
  38. rem echo 4) Microsoft Internet Explorer 3.02 for Windows 95
  39. rem echo 5) Telstra Big Pond
  40. rem echo 7) OzSurf
  41. echo Q) Quit
  42. echo.
  43. echo Please contact individual service providers with connection 
  44. echo problems. If you wish to use a different browser, upgrade 
  45. echo to a more recent version, or find out more about the Starter 
  46. echo Kits, follow the links when you open DEFAULT.HTM.
  47. echo.
  48. choice /c:1234567890Q Please choose 
  49. if errorlevel 11 goto end
  50. rem if errorlevel 7 goto Ozinst
  51. if errorlevel 5 goto TelInst
  52. if errorlevel 4 goto MSInst
  53. rem if errorlevel 4 goto WebEx
  54. if errorlevel 3 goto OS2
  55. if errorlevel 2 goto Win95
  56. if errorlevel 1 goto Win31
  57. goto end
  58.  
  59.  
  60. :Ozinst
  61. call isp\ozsurf\setup.exe
  62. goto end
  63.  
  64. :TelInst
  65. call isp\bigpond\setup.exe
  66. goto end
  67.  
  68.  
  69. :WebEx
  70. echo.
  71. choice /c:cdefg Which drive do you wish to install to 
  72. if errorlevel 5 set instdrive=G:
  73. if errorlevel 4 set instdrive=F:
  74. if errorlevel 3 set instdrive=E:
  75. if errorlevel 2 set instdrive=D:
  76. if errorlevel 1 set instdrive=C:
  77. md %instdrive%\apctemp
  78. copy browsers\os2\webex\webxv11h.exe %instdrive%\apctemp
  79. echo.
  80. echo To install the WebExplorer open an OS/2 window, change
  81. echo directory to %instdrive%\apctemp and run webxv11h.exe.
  82. echo.
  83. echo.
  84. goto end
  85.  
  86. :OS2
  87. echo.
  88. choice /c:cdefg Which drive do you wish to install to 
  89. if errorlevel 5 set instdrive=G:
  90. if errorlevel 4 set instdrive=F:
  91. if errorlevel 3 set instdrive=E:
  92. if errorlevel 2 set instdrive=D:
  93. if errorlevel 1 set instdrive=C:
  94. md %instdrive%\apctemp
  95. copy browsers\os2\netscape\os2en202.exe %instdrive%\apctemp
  96. echo.
  97. echo To install the Netscape open an OS/2 window, change
  98. echo directory to %instdrive%\apctemp and run os2en202.exe
  99. echo.
  100. echo.
  101. goto end
  102.  
  103. :Win95
  104. echo.
  105. choice /c:cdefg Which drive do you wish to install to
  106. if errorlevel 5 set instdrive=G:
  107. if errorlevel 4 set instdrive=F:
  108. if errorlevel 3 set instdrive=E:
  109. if errorlevel 2 set instdrive=D:
  110. if errorlevel 1 set instdrive=C:
  111. md %instdrive%\apctemp
  112. copy browsers\win95\netscape\n32e408.exe %instdrive%\apctemp
  113. %instdrive%
  114. cd \apctemp
  115. call n32e408.exe
  116. rem call setup.exe
  117. echo.
  118. echo Remove this direcory and its contents once installed.
  119. echo.
  120. goto end
  121.  
  122. :MSInst
  123. call browsers\win95\msoft\msie302r.exe
  124. goto end
  125.  
  126. :Win31
  127. echo.
  128. choice /c:cdefg Which drive do you wish to install to
  129. if errorlevel 5 set instdrive=G:
  130. if errorlevel 4 set instdrive=F:
  131. if errorlevel 3 set instdrive=E:
  132. if errorlevel 2 set instdrive=D:
  133. if errorlevel 1 set instdrive=C:
  134. md %instdrive%\apctemp
  135. rem copy browsers\win31\netscape\java16.exe %instdrive%\apctemp
  136. copy browsers\win31\netscape\n16e408.exe %instdrive%\apctemp
  137. %instdrive%
  138. cd \apctemp
  139. rem call java16.exe
  140. rem call setup.exe
  141. call n16e408.exe
  142. rem call setup.exe
  143. echo.
  144. echo Remove this direcory and its contents once installed.
  145. echo.
  146.  
  147. :end
  148.  
  149.