home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Share Gallery 1
/
share_gal_1.zip
/
share_gal_1
/
BF
/
BF162.ZIP
/
INSTALL.BAT
< prev
next >
Wrap
DOS Batch File
|
1991-07-11
|
1KB
|
66 lines
ECHO OFF
CLS
ECHO
ECHO
ECHO
ECHO This procedure installs REMEMBER on your C: hard drive.
ECHO It puts a CONFIG.SYS file in your root directory (if you
ECHO already have CONFIG.SYS, it will not be changed, but check
ECHO it for minimum values of FILES=20 and BUFFERS=16).
ECHO
ECHO The procedure creates a sub-directory called \REMEM, then it
ECHO copies the REMEMBER program to that new sub-directory.
ECHO
ECHO
ECHO
ECHO If this is NOT what you want to do, hold down the Ctrl key and
ECHO press C, and then reply Y.
ECHO
ECHO
ECHO Otherwise, to proceed with the installation:
ECHO
PAUSE
CLS
ECHO
ECHO
C:
CD\
IF EXIST CONFIG.SYS GOTO SKIP1
ECHO Installing new CONFIG.SYS file...
ECHO
ECHO
COPY A:CONFIG.SYS
:SKIP1
IF EXIST REMEM.BAT GOTO SKIP2
ECHO
ECHO
ECHO Installing new REMEM.BAT file...
ECHO
ECHO
COPY A:REMEM.BAT
:SKIP2
ECHO
ECHO
ECHO Creating \REMEM sub-directory...
ECHO
ECHO
MD \REMEM
CD \REMEM
ECHO Copying files to new \REMEM sub-directory...
COPY A:*.*
ERASE REMEM.BAT
CLS
ECHO
ECHO
ECHO The INSTALL is now complete.
ECHO
ECHO
ECHO If you did NOT have a CONFIG.SYS file then re-boot your computer
ECHO (just this once) by pressing the Ctrl, Alt, and Del keys at the
ECHO same time (this loads CONFIG.SYS into DOS).
ECHO
ECHO After the "re-boot" type REMEM and press ENTER.
ECHO
ECHO
ECHO ON