home *** CD-ROM | disk | FTP | other *** search
/ Programmer 7500 / MAX_PROGRAMMERS.iso / PROGRAMS / UTILS / HARDDISK / HDM4262.ZIP / INSTALL.BAT < prev    next >
Encoding:
DOS Batch File  |  1990-06-22  |  685 b   |  21 lines

  1. echo off
  2. echo           This batch file is for a first time install only!
  3. echo           Cancel it if you have a prior version of HDM in use,
  4. echo           ...and use UPDATE.BAT to retain your menu entries.
  5. echo                  - DO NOT INSTALL IN ROOT DIRECTORY -
  6. echo           Press Ctrl-Break to cancel or Enter to continue...
  7. pause
  8. if x%1 == x goto err
  9. md %1
  10. copy *.* %1
  11. echo     Add the following statements to the end of your AUTOEXEC.BAT file:
  12. echo               PATH C:\;%1
  13. echo               CD %1
  14. echo               HDM
  15. pause
  16. goto exit
  17. :err
  18. echo     You must enter the drive and directory to install HDM IV
  19. echo         example:  INSTALL C:\HDM
  20. :exit
  21.