home *** CD-ROM | disk | FTP | other *** search
/ Game Fest 1994 / gamefeststgcomputerlimited1994.iso / files / gamecard / ddefiant / defiantx.exe / INSTALL.BAT < prev    next >
DOS Batch File  |  1994-02-01  |  2KB  |  74 lines

  1.  
  2. echo off
  3. rem  This installation program is intended to be used with a
  4. rem  720K 3-1/2", 1.44M 3-1/2", or 1.2M 5-1/4" floppy disks.
  5. rem  DOC DEFIANT can be compressed to fit within a 360K 5-1/4"
  6. rem  floppy.  If you choose to distribute on a 360K floppy,
  7. rem  however, this installation program will not function
  8. rem  properly and you must contact Just For Me Software
  9. rem  directly for a revised version that will.
  10. cls
  11.  
  12. if "%1" == "" goto INSTRUCT 
  13. if "%2" == "" goto INSTRUCT 
  14. if "%1" == "A:" goto INSTALL
  15. if "%1" == "a:" goto INSTALL
  16. if "%1" == "B:" goto INSTALL
  17. if "%1" == "b:" goto INSTALL
  18.  
  19. goto INSTRUCT
  20.  
  21. :INSTALL
  22. echo  DOC DEFIANT Hard Disk Installation
  23. echo  ----------------------------------
  24. echo  This program will install DOC DEFIANT on your hard
  25. echo  disk in a directory called %2/DEFIANT from  your
  26. echo  floppy disk in drive %1.  You must have 1.0 Megabyte
  27. echo  free on your hard drive.
  28.  
  29. pause
  30. md %2\DEFIANT 
  31.  
  32. cls
  33. echo  --- LOADING PROGRAM FILES --- 
  34. copy %1\*.* %2\DEFIANT\*.* 
  35.  
  36. echo  
  37. cls
  38. echo  DOC DEFIANT   
  39. echo  ------------  
  40. echo  TO START, MOVE TO THE %2\DEFIANT DIRECTORY, AND 
  41. echo  ENTER THE FOLLOWING:
  42. echo  - 
  43. echo    START  -- To Run Program 
  44. echo  -
  45. echo  WE HOPE YOU ENJOY!!! 
  46. pause
  47. %2
  48. cd\DEFIANT 
  49. goto EXIT
  50.  
  51. :INSTRUCT 
  52. cls 
  53. echo  DOC DEFIANT Hard Disk Installation 
  54. echo  ---------------------------------- 
  55. echo  This program installs DOC DEFIANT on your hard
  56. echo  drive.  For this program, please adopt the following
  57. echo  format:
  58. echo  - 
  59. echo                 INSTALL A: C:
  60. echo  -  
  61. echo      where A: = floppy disk drive from which you're loading
  62. echo                 the program
  63. echo            C: = hard drive on which the program is to be
  64. echo                 installed
  65. echo  -
  66. echo  Substitute other drive letters as appropriate.   Please
  67. echo  note you must have 1.0 Megabyte free on your hard drive.
  68.  
  69. pause
  70. cls 
  71. goto EXIT 
  72.           
  73. :EXIT 
  74.