home *** CD-ROM | disk | FTP | other *** search
/ PC Gamer 14 / 1996-01_Disc_14.iso / genie / instgen.bat < prev    next >
DOS Batch File  |  1995-09-05  |  3KB  |  75 lines

  1. cls
  2. :menu
  3. echo off
  4. echo            ╔════════════════════════════════════╗
  5. echo            ║    GEnie Installation Notes        ║
  6. echo            ║                                    ║
  7. echo            ║  This program may not install from ║
  8. echo            ║  our PC Gamer front end. If you    ║
  9. echo            ║  have any problems, read the       ║
  10. echo            ║  "Install Notes" below.            ║
  11. echo            ╚════════════════════════════════════╝
  12. echo. 
  13. echo. 
  14. echo        Select from one of the following options:
  15. echo        1. Install 
  16. echo        2. Install Notes
  17. echo        3. Windows '95 Install Notes
  18. echo        4. E(X)it 
  19. echo. 
  20. echo        Please enter a choice: 1,2,3,4
  21. choice /c:1234xi /n
  22. if errorlevel 6 goto vpi
  23. if errorlevel 5 goto end
  24. if errorlevel 4 goto end
  25. if errorlevel 3 goto win
  26. if errorlevel 2 goto run
  27. if errorlevel 1 goto vpi
  28.  
  29. :vpi
  30. CD\GENIE
  31. CALL WIN SETUP.EXE
  32. goto end
  33.  
  34. :run
  35. cls          
  36. echo         ╔═════════════════════════════════════════════════════╗
  37. echo         ║                                                     ║
  38. echo         ║          GENIE INSTALLATION FOR WINDOWS             ║
  39. echo         ║                                                     ║
  40. echo         ║  If you're experiencing problems installing this    ║
  41. echo         ║  program from our PC Gamer front end, you'll need   ║
  42. echo         ║  to EXIT and load Windows.                          ║
  43. echo         ║                                                     ║
  44. echo         ║  From Windows, pull down the FILE menu and select   ║
  45. echo         ║  RUN.                                               ║
  46. echo         ║                                                     ║
  47. echo         ║  From the RUN option, enter D:\GENIE\SETUP.EXE      ║
  48. echo         ║  where "D:" is the letter of you CD-ROM drive.      ║
  49. echo         ║                                                     ║
  50. echo         ╚═════════════════════════════════════════════════════╝
  51. echo.
  52. pause
  53. goto menu
  54.  
  55. :win
  56. cls          
  57. echo         ╔═════════════════════════════════════════════════════╗
  58. echo         ║                                                     ║
  59. echo         ║         GENIE INSTALLATION FOR WINDOWS '95          ║
  60. echo.        ║                                                     ║
  61. echo         ║  If you're experiencing problems installing this    ║
  62. echo         ║  program with Windows '95, you'll need to Exit our  ║
  63. echo         ║  front end and load the program manually.           ║
  64. echo.        ║                                                     ║
  65. echo         ║  To do this, access the \GENIE directory on our     ║
  66. echo         ║  CD and locate the file SETUP.EXE.                  ║
  67. echo.        ║                                                     ║
  68. echo         ╚═════════════════════════════════════════════════════╝
  69. echo.
  70. pause
  71. goto menu
  72.  
  73.  
  74. :end
  75.