home *** CD-ROM | disk | FTP | other *** search
/ PC Home 32 / PC_HOME_95-uncompressed-cd-image.iso / doom / wadgod / wgsetup.bat < prev   
Encoding:
DOS Batch File  |  1995-01-17  |  3.3 KB  |  83 lines

  1. @echo off
  2. cls
  3. echo. 
  4. echo. 
  5. echo. 
  6. echo                 ╔════════════════════════════════════════╗
  7. echo                 ║                                        ║
  8. echo                 ║                                        ║
  9. echo                 ║            WADGOD 3.1 SETUP            ║
  10. echo                 ║                                        ║
  11. echo                 ║                                        ║
  12. echo                 ║ This setup will remove any old WADGOD  ║
  13. echo                 ║                                        ║
  14. echo                 ║ files (if they exist) and install the  ║
  15. echo                 ║                                        ║
  16. echo                 ║ files for WADGOD Version 3.1.  If for  ║
  17. echo                 ║                                        ║
  18. echo                 ║ some reason you want to retain any     ║
  19. echo                 ║                                        ║
  20. echo                 ║ previous version you might have, then  ║
  21. echo                 ║                                        ║
  22. echo                 ║ EXIT now, back it up to another        ║
  23. echo                 ║                                        ║
  24. echo                 ║ directory and run this setup again.    ║
  25. echo                 ║                                        ║
  26. echo                 ║                                        ║
  27. echo                 ║ Also, make sure you are currently      ║
  28. echo                 ║                                        ║
  29. echo                 ║ located in the DOOM/DOOM II directory  ║
  30. echo                 ║                                        ║
  31. echo                 ║ before proceeding with the setup.      ║
  32. echo                 ║                                        ║
  33. echo                 ╚════════════════════════════════════════╝
  34. echo. 
  35. echo. 
  36. echo. 
  37. choice /c:iq Do you wish to [I]nstall now or [Q]uit to DOS?
  38. if ErrorLevel 2 goto Abort
  39. :DoIt
  40. echo.
  41. echo                 ╔════════════════════════════════════════╗
  42. echo                 ║    DELETING OLD STUFF (if it exists)   ║
  43. echo                 ╚════════════════════════════════════════╝
  44. echo.
  45. if exist wadgod.bat del wadgod.bat
  46. if exist wg2.exe del wg2.exe
  47. if exist wg.exe del wg.exe
  48. if exist wg3.exe del wg3.exe
  49. if exist wadgod2.bat del wadgod2.bat
  50. if exist wadgod.cfg del wadgod.cfg
  51. if exist wadgod3.cfg del wadgod3.cfg
  52. echo.
  53. wdgd31.exe
  54. del wdgd31.exe
  55. echo. 
  56. echo. 
  57. echo. 
  58. echo                 ╔════════════════════════════════════════╗
  59. echo                 ║                                        ║
  60. echo                 ║         INSTALLATION COMPLETE          ║
  61. echo                 ║                                        ║
  62. echo                 ║    Type WADGOD to start up and then    ║
  63. echo                 ║                                        ║
  64. echo                 ║         Configure immediately.         ║
  65. echo                 ║                                        ║
  66. echo                 ║                                        ║
  67. echo                 ╚════════════════════════════════════════╝
  68. echo. 
  69. echo. 
  70. echo. 
  71. goto End
  72. :Abort
  73. echo. 
  74. echo. 
  75. echo. 
  76. echo                 ╔════════════════════════════════════════╗
  77. echo                 ║          OPERATION TERMINATED          ║
  78. echo                 ╚════════════════════════════════════════╝
  79. echo. 
  80. echo. 
  81. echo. 
  82. :End
  83.