home *** CD-ROM | disk | FTP | other *** search
/ Australian Personal Computer 1998 December / apc3122.iso / install.bat < prev    next >
Encoding:
DOS Batch File  |  1998-11-01  |  1.6 KB  |  60 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 December 1998 - Volume 3 No. 12/2
  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. choice /c:yn Do you want to continue
  20. if errorlevel 2 goto end
  21. if errorlevel 1 goto KitInst
  22. goto end
  23.  
  24. :KitInst
  25. cls
  26. echo         apcmag.cd - APC November 1998 - Volume 3 No. 11
  27. echo.
  28. echo.Select one of the following, or Q to quit:
  29. echo.
  30. echo 1) Netscape Navigator 4.07 for Windows 95/NT
  31. echo Q) Quit
  32. echo.
  33. choice /c:1234567890Q Please choose 
  34. if errorlevel 1 goto Win95
  35. goto end
  36.  
  37.  
  38. :Win95
  39. echo.
  40. choice /c:cdefg Which drive do you wish to install to
  41. if errorlevel 5 set instdrive=G:
  42. if errorlevel 4 set instdrive=F:
  43. if errorlevel 3 set instdrive=E:
  44. if errorlevel 2 set instdrive=D:
  45. if errorlevel 1 set instdrive=C:
  46. md %instdrive%\apctemp
  47. copy browsers\win95\netscape\n32e407.exe %instdrive%\apctemp
  48. %instdrive%
  49. cd \apctemp
  50. call n32e407.exe
  51. rem call setup.exe
  52. echo.
  53. echo Remove this direcory and its contents once installed.
  54. echo.
  55. goto end
  56.  
  57.  
  58. :end
  59.  
  60.