home *** CD-ROM | disk | FTP | other *** search
- @echo off
- rem ***** This batch file written by Ashton Mills
- rem ***** with additions by Jeremy White, Ben Gerholt and Ari Weisz-Koves
- rem ***** for November 1997 issue of
- rem ***** Australian Personal Computer Magazine.
- cls
- echo apcmag.cd - APC June 1999 - Volume 4 No. 7
- echo.__________________________________________________________________
- echo.
- echo This CD uses a Web browser for navigation.
- echo.
- echo This allows it to work on any platform without installing
- echo proprietary software.
- echo.
- echo If you already have a Web browser installed, you don't need to run
- echo this program. Simply use your Web browser to open the file
- echo DEFAULT.HTM in the top level directory of the CD.
- echo.
- echo If you don't have a Web browser installed, this program allows you
- echo to install a popular browser, or one of three Windows Internet
- echo Starter Kits.
- echo.
- choice /c:yn Do you want to continue
- if errorlevel 2 goto end
- if errorlevel 1 goto KitInst
- goto end
-
- :KitInst
- cls
- echo apcmag.cd - APC May 1999 - Volume 4 No. 5
- echo.
- echo.Select one of the following, or Q to quit:
- echo.
- echo 1) Netscape Navigator 4.08 for Windows 3.1
- echo 2) Netscape Navigator 4.08 for Windows 95/NT
- rem echo 3) Netscape Navigator 2.02 for OS/2 Warp
- rem echo 4) IBM WebExplorer 1.1h for OS/2 Warp
- rem echo 4) Microsoft Internet Explorer 3.02 for Windows 95
- rem echo 5) Telstra Big Pond
- rem echo 7) OzSurf
- echo Q) Quit
- echo.
- echo Please contact individual service providers with connection
- echo problems. If you wish to use a different browser, upgrade
- echo to a more recent version, or find out more about the Starter
- echo Kits, follow the links when you open DEFAULT.HTM.
- echo.
- choice /c:1234567890Q Please choose
- if errorlevel 11 goto end
- rem if errorlevel 7 goto Ozinst
- if errorlevel 5 goto TelInst
- if errorlevel 4 goto MSInst
- rem if errorlevel 4 goto WebEx
- if errorlevel 3 goto OS2
- if errorlevel 2 goto Win95
- if errorlevel 1 goto Win31
- goto end
-
-
- :Ozinst
- call isp\ozsurf\setup.exe
- goto end
-
- :TelInst
- call isp\bigpond\setup.exe
- goto end
-
-
- :WebEx
- echo.
- choice /c:cdefg Which drive do you wish to install to
- if errorlevel 5 set instdrive=G:
- if errorlevel 4 set instdrive=F:
- if errorlevel 3 set instdrive=E:
- if errorlevel 2 set instdrive=D:
- if errorlevel 1 set instdrive=C:
- md %instdrive%\apctemp
- copy browsers\os2\webex\webxv11h.exe %instdrive%\apctemp
- echo.
- echo To install the WebExplorer open an OS/2 window, change
- echo directory to %instdrive%\apctemp and run webxv11h.exe.
- echo.
- echo.
- goto end
-
- :OS2
- echo.
- choice /c:cdefg Which drive do you wish to install to
- if errorlevel 5 set instdrive=G:
- if errorlevel 4 set instdrive=F:
- if errorlevel 3 set instdrive=E:
- if errorlevel 2 set instdrive=D:
- if errorlevel 1 set instdrive=C:
- md %instdrive%\apctemp
- copy browsers\os2\netscape\os2en202.exe %instdrive%\apctemp
- echo.
- echo To install the Netscape open an OS/2 window, change
- echo directory to %instdrive%\apctemp and run os2en202.exe
- echo.
- echo.
- goto end
-
- :Win95
- echo.
- choice /c:cdefg Which drive do you wish to install to
- if errorlevel 5 set instdrive=G:
- if errorlevel 4 set instdrive=F:
- if errorlevel 3 set instdrive=E:
- if errorlevel 2 set instdrive=D:
- if errorlevel 1 set instdrive=C:
- md %instdrive%\apctemp
- copy browsers\win95\netscape\n32e408.exe %instdrive%\apctemp
- %instdrive%
- cd \apctemp
- call n32e408.exe
- rem call setup.exe
- echo.
- echo Remove this direcory and its contents once installed.
- echo.
- goto end
-
- :MSInst
- call browsers\win95\msoft\msie302r.exe
- goto end
-
- :Win31
- echo.
- choice /c:cdefg Which drive do you wish to install to
- if errorlevel 5 set instdrive=G:
- if errorlevel 4 set instdrive=F:
- if errorlevel 3 set instdrive=E:
- if errorlevel 2 set instdrive=D:
- if errorlevel 1 set instdrive=C:
- md %instdrive%\apctemp
- rem copy browsers\win31\netscape\java16.exe %instdrive%\apctemp
- copy browsers\win31\netscape\n16e408.exe %instdrive%\apctemp
- %instdrive%
- cd \apctemp
- rem call java16.exe
- rem call setup.exe
- call n16e408.exe
- rem call setup.exe
- echo.
- echo Remove this direcory and its contents once installed.
- echo.
-
- :end
-
-