home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Sunny 1,000 Collection
/
SUNNY1000.iso
/
Files
/
Dos
/
Boardak
/
CLKIT100.ZIP
/
INSTALL.BAT
< prev
next >
Wrap
DOS Batch File
|
1995-02-17
|
2KB
|
57 lines
@echo off
rem INSTALL.BAT for CLICKIT revised 02/15/95
cls
echo Click-It Installation Program
echo --------------------------------------------------------------------------------
if "%1"=="" goto BadParams
if "%2"=="" goto BadParams
if "%3"=="" goto BadParams
goto ParamsOK
:BadParams
echo You must enter a command similar to the following...
echo
echo INSTALL A: C: CLICKIT where...
echo =====================
echo
echo "A:" represents the install SOURCE diskette drive letter
echo
echo "C:" represents the install TARGET disk drive letter
echo
echo "CLICKIT" represents the Click-It DIRECTORY name
echo
echo You should use your own drive letters and directory name if they are
echo different from this sample.
echo
echo
echo Please try again or enter README for more information.
echo --------------------------------------------------------------------------------
goto Outahere
:ParamsOK
echo Click-It files will now be copied.
echo Please stand by.
echo
%2
cd\
md %3
%1
copy register.frm %2\%3 > nul
copy view.com %2\%3 > nul
copy clickit.* %2\%3
copy *.clk %2\%3
echo
echo Click-It has been installed in %2\%3.
echo --------------------------------------------------------------------------------
pause
%2
cd\%3
view clickit.doc
cls
echo Enter CLICKIT right now to play.
echo --------------------------------
echo
:Outahere