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 December 1998 - Volume 3 No. 12/2
- 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.
- 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 November 1998 - Volume 3 No. 11
- echo.
- echo.Select one of the following, or Q to quit:
- echo.
- echo 1) Netscape Navigator 4.07 for Windows 95/NT
- echo Q) Quit
- echo.
- choice /c:1234567890Q Please choose
- if errorlevel 1 goto Win95
- 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\n32e407.exe %instdrive%\apctemp
- %instdrive%
- cd \apctemp
- call n32e407.exe
- rem call setup.exe
- echo.
- echo Remove this direcory and its contents once installed.
- echo.
- goto end
-
-
- :end
-
-