home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 16 / 16.iso / t / t155 / 1.img / SETUP.BAT < prev   
Encoding:
DOS Batch File  |  1990-10-11  |  1.7 KB  |  61 lines

  1. echo OFF
  2. CLS
  3. echo *    Installation of COPY II PC V7.0 files.
  4. echo *
  5.  
  6. if X%1 not == X goto oops1
  7. if not exist NOGUARD.EXE goto oops2
  8.  
  9. echo *    The COPY II PC files will be copied to the
  10. echo *    path %1. The sub-directory will be created
  11. echo *    if it does not exist. 
  12. echo *
  13. echo *    If the subdirectory already exists on your hard
  14. echo *    drive, you may see the message "Directory already
  15. echo *    exists" or "Unable to create directory."
  16. echo *    These are error messages generated by DOS.
  17. echo *    It does not affect the process of copying
  18. echo *    the Copy II PC files into that subdirectory.
  19. echo *
  20. echo *    Please note: Older versions of NOGUARD will be
  21. echo *    renamed to NOGUARD.OLD.
  22. echo *
  23. echo *
  24. if not exist %1           MD %1
  25. if exist %1\NOGUARD.COM    REN %1\NOGUARD.COM *.OLD
  26. echo *
  27.  
  28. COPY *.* %1
  29.  
  30. echo *
  31. echo *    All Copy II PC files have been successfully
  32. echo *     copied to the specified path.
  33. echo *
  34. echo *
  35. goto end
  36.  
  37. :oops1
  38. echo *    The path must be specified. For example,
  39. echo *    SETUP C:\C2PC.  If the subdirectory C2PC does not
  40. echo *    exist, the installation process will create it.
  41. echo *    (You must specify your hard drive in the path.)
  42. echo *    
  43. echo *    If the subdirectory already exists on your hard
  44. echo *    drive, you may see the message "Directory already
  45. echo *    exists" or "Unable to create directory."
  46. echo *    These are error messages generated by DOS.
  47. echo *    It does not affect the process of copying
  48. echo *    the Copy II PC files into that subdirectory.
  49. echo *
  50. echo *
  51. goto end
  52.  
  53. :oops2
  54. echo *    The current drive must contain the Copy II PC disk.
  55. echo *    For example, the prompt should be "A:>" if the disk
  56. echo *    is in drive A. Type "A:" then press ENTER.
  57. echo *    Type the SETUP command with the desired drive and path.
  58. echo *
  59. echo *
  60. :end
  61.