home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Best Sellers 7: Football Classics 2
/
CD1.iso
/
bsfball2
/
windows
/
ggoal
/
install.bat
< prev
next >
Wrap
DOS Batch File
|
1997-09-11
|
1KB
|
50 lines
@echo off
if "%1"=="" goto doh
attrib *.* -r -h
if not exist GGOAL.EXE goto wellwherethebloodyhellisit
if not exist %1 md %1
cls
echo ╔══════════════════════════════════════════════════════╗
echo ║Installation Program for Golden Goal - (c)Stevie C '97║
echo ╚══════════════════════════════════════════════════════╝
pause
copy *.* %1
if errorlevel 1 goto whoops
cls
echo. The Installation is complete.
echo.
echo. To play the game change to the directory
echo. and then type RUN.
echo.
goto end
:whoops
echo.
echo. There was an error during installation.
echo. Please make sure you specified the drive and path
echo.
echo. e.g. INSTALL C:\GGOAL
echo.
goto end:
:doh
cls
ECHO.
ECHO. You must type the drive & directory where you wish to install this game
echo.
echo. e.g. INSTALL C:\GGOAL
echo.
goto end:
:wellwherethebloodyhellisit
echo
echo You must run the installation program
echo from the installation drive.
echo Change to the a drive and try again.
echo
goto end:
:end
attrib *.* +r +h
attrib install.bat -h