home *** CD-ROM | disk | FTP | other *** search
- echo off
- echo Point & Shoot Backup/Restore Installation
- echo .
- if "%1" == "" goto badparms
- if "%2" == "" goto badparms
- if "%1" == %2 goto badparms
- if not exist %1PASBR.EXE goto badparms
- md %2\p&s
- copy %1PASBR.EXE %2\p&s
- copy %1PASBRDOC.TXT %2\p&s
- echo Point & Shoot Backup/Restore installation completed....
- echo You may now run the program through AMST's Point & Shoot Hard
- echo Disk Manager (if you own it) or directly from DOS by changing to
- echo the %2\P&S directory and typing PASBR. Refer to the program
- echo documentation for further details.
- goto done
- :badparms
- echo Incorrect parameters. You should be logged onto the floppy drive
- echo containing the Point & Shoot Backup/Restore program and type the
- echo following:
- echo INSTALL source: target:
- echo where:
- echo source is the floppy drive letter you are installing from
- echo target is the hard drive letter you are installing to
- :done