home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Sunny 1,000 Collection
/
SUNNY1000.iso
/
Files
/
W31
/
Puzzle
/
CBMT245.ZIP
/
INSTALL.BAT
< prev
next >
Wrap
DOS Batch File
|
1996-04-20
|
972b
|
35 lines
@echo off
if "%1"=="" goto usage
md %1
rem put copying files here
echo .......copying executable CLUBMATE.EXE
copy clubmate.exe %1
echo .......copying binary file CLUBMATE.BIN
copy clubmate.bin %1
echo .......copying Windows ini file CLUBMATE.INI
copy clubmate.ini %1
echo .......copying Windows help file CLUBMATE.HLP
copy clubmate.hlp %1
echo .......copying ECO key file ECO.KEY
copy eco.key %1
echo .......copying registration form REGISTER.WRI
copy register.wri %1
echo .......copying tutorial files TUTORIAL.DOC and TUTORIAL.TXT
copy tutorial.doc %1
copy tutorial.txt %1
echo .......copying games files
copy *.gms %1
echo .......copying position files
copy *.pos %1
echo .......copying ascii format files
copy *.fmt %1
echo .......copying readme files
copy readme.* %1
rem no need to alter the .ini file - program does it
echo ClubMate installed
goto exit
:usage
echo type install [clubmate path]
echo e.g. install c:\clubmate
:exit