home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Fun & Games 30
/
fun_&_games_nr_30.iso
/
fg30
/
wingames
/
cwm102
/
manual.bat
< prev
next >
Wrap
DOS Batch File
|
1995-05-17
|
4KB
|
108 lines
echo off
cls
echo Crossword Mania! Manual Installer
echo.
echo Use this installer ONLY if you have tried to install the program with
echo SETUP and failed. You must have 5 MB of free hard drive space before
echo running this installer. If you do not have the available space please
echo hit CTRL-C. To install, type MANUAL followed by the drive letter (and
echo a colon) of the drive to install the program on. The program will be
echo installed in the \CROSS directory. For example, to install the program on
echo drive C:, type:
echo.
echo MANUAL C:
echo.
echo A few files will be placed in the Windows' SYSTEM directory. If your
echo system directory is NOT \WINDOWS\SYSTEM, then you need to edit this
echo batch file appropriately.
echo.
echo Please hit CTRL-C to quit or any other key to continue.
pause
if "%1"=="" goto errormsg
md %1\cross
echo.
echo Installing files to %1\CROSS
echo.
expand 08080001.pa_ %1\cross\08080001.pat
expand 08080002.pa_ %1\cross\08080002.pat
expand 09090001.pa_ %1\cross\09090001.pat
expand 09090002.pa_ %1\cross\09090002.pat
expand 10100001.pa_ %1\cross\10100001.pat
expand 10100002.pa_ %1\cross\10100002.pat
expand 10100003.pa_ %1\cross\10100003.pat
expand 11110001.pa_ %1\cross\11110001.pat
expand 11110002.pa_ %1\cross\11110002.pat
expand 12120001.pa_ %1\cross\12120001.pat
expand 12120002.pa_ %1\cross\12120002.pat
expand 13130001.pa_ %1\cross\13130001.pat
expand 13130002.pa_ %1\cross\13130002.pat
expand 14140001.pa_ %1\cross\14140001.pat
expand 15150001.pa_ %1\cross\15150001.pat
expand 16160001.pa_ %1\cross\16160001.pat
expand 17170001.pa_ %1\cross\17170001.pat
expand 18180001.pa_ %1\cross\18180001.pat
expand 19190001.pa_ %1\cross\19190001.pat
expand 20200001.pa_ %1\cross\20200001.pat
expand anibuton.vb_ %1\cross\anibuton.vbx
expand builddon.wa_ %1\cross\builddon.wav
expand cmdialog.vb_ %1\cross\cmdialog.vbx
expand cross.hl_ %1\cross\cross.hlp
expand cross.ex_ %1\cross\cross.exe
expand cross.cf_ %1\cross\cross.cfg
expand history.tx_ %1\cross\history.txt
expand lowbeep.wa_ %1\cross\lowbeep.wav
expand order.wr_ %1\cross\order.wri
expand puzzledn.wa_ %1\cross\puzzledn.wav
expand puzzles.cb_ %1\cross\puzzles.cbk
copy readme.wri %1\cross
expand statusb.vb_ %1\cross\statusb.vbx
expand thankyou.wa_ %1\cross\thankyou.wav
expand threed.vb_ %1\cross\threed.vbx
expand toolbutt.vb_ %1\cross\toolbutt.vbx
expand vbctl3d.vb_ %1\cross\vbctl3d.vbx
expand vbrun300.dl_ %1\windows\system\vbrun300.dll
expand vbstrapi.dl_ %1\cross\vbstrapi.dll
expand welcome.wa_ %1\cross\welcome.wav
expand wrongltr.wa_ %1\cross\wrongltr.wav
expand wrongwrd.wa_ %1\cross\wrongwrd.wav
echo.
echo Please insert Disk #2
echo If installing from a temporary directory on your hard drive, then press
echo any key
pause
expand standard.dc_ %1\cross\standard.dct
echo.
echo Installation completed.
echo.
echo Crossword Mania! has been installed on your hard drive.
echo.
echo Please enter MS Windows and follow these instructions:
echo.
echo To run the program immediately, from the Program manager, select 'File',
echo then 'Run'. Specify %1\CROSS\CROSS as the file to run.
echo.
echo To create a program group, select NEW from the FILE menu. Select GROUP
echo ITEM and click on the OK button. Type in CROSSWORD MANIA! for the
echo description and click on the OK button.
echo.
echo With the Crossword Mania! group open select NEW from the FILE menu in
echo program manager. This time select PROGRAM ITEM and click on the OK
echo button. Click on the COMMAND LINE box and type %1\CROSS\CROSS.EXE then
echo click on the OK button.
echo.
echo You should now have an Crossword Mania! icon. To run Crossword Mania!,
echo double click on the crossword puzzle icon.
echo.
echo Hit any key to end program.
pause
goto end
:errormsg
echo A drive letter must be specified to run this installation program.
echo Please use the following syntax.
echo.
echo MANUAL [drive letter:]
echo.
:end