home *** CD-ROM | disk | FTP | other *** search
- @ECHO OFF
- ECHO OFF
- CLS
- :Here
- IF EXIST inst.exe GOTO Check
- ECHO Please replace this disk with the disk labelled DISTRIBUTION DISK #2 and
- PAUSE
- GOTO Here
- :Check
- IF NOT %1TRICK == TRICK GOTO There
- :Message
- CLS
- ECHO ╔══════════════════════════════════════════════════════════════════╗
- ECHO ║ If you are installing to a hard disk, this program will ║
- ECHO ║ automatically create the directory \FUZZBALL on the ║
- ECHO ║ drive that you choose. ║
- ECHO ║ ║
- ECHO ║ Should you wish to change the default destination directory ║
- ECHO ║ press Control + C to exit to DOS, then enter INSTALL {pathname} ║
- ECHO ╚══════════════════════════════════════════════════════════════════╝
- PAUSE
- :There
- inst %1
-
-
-