home *** CD-ROM | disk | FTP | other *** search
- @echo off
- cls
- echo
- echo
- echo
- echo ╔═══════════════════════════════════╗
- echo ║ Front Page Sports:Football Pro ║
- echo ║ Version 1.01 Update ║
- echo ║ Copyright 1993 Dynamix, Inc. ║
- echo ╚═══════════════════════════════════╝
-
- if .%1==. goto no_param
-
- if not exist %1\nul goto badpath
-
- if "%1"=="c:" goto def
- if "%1"=="C:" goto def
- if "%1"=="d:" goto def
- if "%1"=="D:" goto def
- if "%1"=="e:" goto def
- if "%1"=="E:" goto def
- if "%1"=="f:" goto def
- if "%1"=="F:" goto def
- if "%1"=="g:" goto def
- if "%1"=="G:" goto def
- if "%1"=="h:" goto def
- if "%1"=="H:" goto def
- if "%1"=="i:" goto def
- if "%1"=="I:" goto def
- if "%1"=="j:" goto def
- if "%1"=="J:" goto def
- if "%1"=="k:" goto def
- if "%1"=="K:" goto def
- if "%1"=="l:" goto def
- if "%1"=="L:" goto def
- if "%1"=="m:" goto def
- if "%1"=="M:" goto def
- if "%1"=="n:" goto def
- if "%1"=="N:" goto def
- if "%1"=="o:" goto def
- if "%1"=="O:" goto def
- if "%1"=="p:" goto def
- if "%1"=="P:" goto def
- if "%1"=="q:" goto def
- if "%1"=="Q:" goto def
- if "%1"=="r:" goto def
- if "%1"=="R:" goto def
- if "%1"=="s:" goto def
- if "%1"=="S:" goto def
- if "%1"=="t:" goto def
- if "%1"=="T:" goto def
- if "%1"=="u:" goto def
- if "%1"=="U:" goto def
- if "%1"=="v:" goto def
- if "%1"=="V:" goto def
- if "%1"=="w:" goto def
- if "%1"=="W:" goto def
- if "%1"=="x:" goto def
- if "%1"=="X:" goto def
- if "%1"=="y:" goto def
- if "%1"=="Y:" goto def
- if "%1"=="z:" goto def
- if "%1"=="Z:" goto def
-
- if not exist %1\hike.com goto nohike
- echo
- echo Ready to install "Front Page Sports:Football Pro" update to
- echo %1
- echo
- echo Press CTRL-C to Abort or
- pause
- copy readme. %1 >nul
- copy patch.* %1 >nul
- %1\patch %1
- del %1\patch.*
- echo
- echo **** Installation complete. ****
- echo
- echo To view release notes, go to the %1 directory,
- echo and then use the INSTALL program.
- echo
- echo To run, go to the %1 directory,
- echo and then type: HIKE.
- echo
- goto end
-
-
- :def
- if not exist %1\dynamix\fbpro\hike.com goto nohike
- echo
- echo Ready to install "Front Page Sports:Football Pro" update to
- echo %1\dynamix\fbpro
- echo
- echo Press CTRL-C to Abort or
- pause
- copy readme. %1\dynamix\fbpro >nul
- copy patch.* %1\dynamix\fbpro >nul
- %1\dynamix\fbpro\patch %1\dynamix\fbpro
- del %1\dynamix\fbpro\patch.*
- echo
- echo **** Installation complete. ****
- echo
- echo To view release notes, go to the %1\dynamix\fbpro directory,
- echo and then use the INSTALL program.
- echo
- echo To run, go to the %1\dynamix\fbpro directory,
- echo and then type: HIKE.
- echo
- goto end
-
-
- :no_param
- echo
- echo
- echo ┌───────────────────────────────────────────────────────────────────┐
- echo │ ERROR: You did not specify a destination drive. │
- echo └───────────────────────────────────────────────────────────────────┘
- echo
- echo
- echo
- pause
- cls
- goto usage
-
-
- :badpath
- echo
- echo
- echo ┌───────────────────────────────────────────────────────────────────┐
- echo │ ERROR: The drive or directory path that you specified is invalid.│
- echo └───────────────────────────────────────────────────────────────────┘
- echo
- echo
- echo
- pause
- cls
- goto usage
-
-
- :nohike
- echo
- echo
- echo ┌───────────────────────────────────────────────────────────────────┐
- echo │ ERROR: The original Football Pro program has not been installed │
- echo │ to the drive or directory path you have specified. Please run the│
- echo │ install program again. If this does not work you may have to │
- echo │ reinstall your original copy of Front Page Sports:Football Pro. │
- echo └───────────────────────────────────────────────────────────────────┘
- echo
- echo
- echo
- pause
- cls
- goto usage
-
-
- :usage
- echo
- echo
- echo
- echo ╔═══════════════════════════════════════════════════════════════════════════╗
- echo ║ To install this update, type 'INSTALL' followed by the drive on which you ║
- echo ║ installed the original Front Page Sports:Football Pro. ║
- echo ║ ║
- echo ║ For example, type: ║
- echo ║ ║
- echo ║ INSTALL C: ║
- echo ║ ║
- echo ║ if you installed Front Page Sports:Football Pro to your C: drive. ║
- echo ║ ║
- echo ║ If, for some reason, you installed Front Page Sports:Football Pro ║
- echo ║ to a directory other than \DYNAMIX\FBPRO, type the new full directory ║
- echo ║ path after the drive letter when you run install. For example, type: ║
- echo ║ ║
- echo ║ INSTALL D:\GAMES\FOOTBALL ║
- echo ║ ║
- echo ║ if you have installed Front Page Sports:Football Pro to the directory ║
- echo ║ \GAMES\FOOTBALL on your D: drive. ║
- echo ╚═══════════════════════════════════════════════════════════════════════════╝
- echo
- echo
- goto end
-
-
- :end
-