home *** CD-ROM | disk | FTP | other *** search
/ Shareware Overload / ShartewareOverload.cdr / utils / ps-bu.zip / INSTALL.BAT < prev    next >
DOS Batch File  |  1990-04-30  |  985b  |  26 lines

  1. echo off
  2. echo                   Point & Shoot Backup/Restore Installation
  3. echo .
  4. if "%1" == "" goto badparms
  5. if "%2" == "" goto badparms
  6. if "%1" == %2 goto badparms
  7. if not exist %1PASBR.EXE goto badparms
  8. md %2\p&s
  9. copy %1PASBR.EXE %2\p&s
  10. copy %1PASBRDOC.TXT %2\p&s
  11. echo  Point & Shoot Backup/Restore installation completed....
  12. echo  You may now run the program through AMST's Point & Shoot Hard
  13. echo  Disk Manager (if you own it) or directly from DOS by changing to
  14. echo  the %2\P&S directory and typing PASBR.  Refer to the program
  15. echo  documentation for further details.
  16. goto done
  17. :badparms
  18. echo  Incorrect parameters.  You should be logged onto the floppy drive
  19. echo  containing the Point & Shoot Backup/Restore program and type the
  20. echo  following:
  21. echo                INSTALL source: target:
  22. echo  where:
  23. echo         source   is the floppy drive letter you are installing from
  24. echo         target   is the hard drive letter you are installing to
  25. :done
  26.